-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (109 loc) · 4.08 KB
/
index.html
File metadata and controls
119 lines (109 loc) · 4.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/index.css" />
<script defer src ="JS/index.js"></script>
<script defer src ="JS/reviews.js"></script>
<script defer src ="JS/hard-shadow.js" async></script>
<script defer src ="JS/soft-shadow.js" async></script>
<script defer src ="JS/button-hover.js" async></script>
<script src="https://kit.fontawesome.com/799ef3b0a7.js"></script>
<title>Random Acts Generator</title>
</head>
<body>
<!-- Header -->
<section id="header">
<div class="container">
<!-- Nav -->
<div class="container">
<div id= "nav" >
<a href="#" class="logo"><img src="images/Be-Kind-Logo.png"/></a>
<i class="fas fa-bars"></i>
<ul class="toggle-content">
<div class="menu-items">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About the "Be Kind" Creators </a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="reviews.html">Reviews</a></li>
<!-- Buttons -->
<li><button><a href="#" class="button">Sign Up!</a></button></li>
<li><button><a href="#" class="button">Log In</a></button></li>
</div>
</ul>
</div>
</div>
</section>
<!-- Attention Grabber -->
<div class="container">
<section id="attention">
<a href="#" class="image-featured"><img src="images/random.png" alt="" /></a>
<div class="top">
<h2>"Never doubt that a small group of thoughtful, committed citizens can change the world! Indeed, its the only thing that ever has."</h2>
<p> - Margaret Mead </p>
</div>
</section>
</div>
<div class ="hard-shadow"></div>
<div class="container">
<section class="main-content home-page">
<h3>Why use Be Kind?</h3>
<div class="reasons">
<div class="reason-to-use hard-shadow">
<i class="fas fa-dice-d20"></i>
<h3>Random Acts</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime
dolorum sed, voluptates sequi modi dolor.
</p>
</div>
<div class="reason-to-use hard-shadow">
<i class="fas fa-hands-helping"></i>
<h3>Help A Friend</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime
dolorum sed, voluptates sequi modi dolor.
</p>
</div>
<div class="reason-to-use hard-shadow">
<i class="fas fa-bell"></i>
<h3>Notifications</h3>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Maxime
dolorum sed, voluptates sequi modi dolor.
</p>
</div>
</div>
</section>
</div>
<div class="container">
<section class="acts-done home-page">
<h3>1195+ Acts of Kindness Have Been Done!</h3>
<div class="acts-images-holder">
<img src="images/kid-kindness.jpg" alt="" class="soft-shadow"/>
<img src="images/kid-kindness.jpg" alt="" class="soft-shadow"/>
<img src="images/kid-kindness.jpg" alt="" class="soft-shadow"/>
</div>
<div class="acts-signup">
<h3>Start changing the world today!</h3>
<button>Sign up!</button>
</div>
</section>
</div>
<div class="container">
<footer>
<div class="footer-content">
<h3>Follow us on</h3>
<div class="icons">
<i class="fab fa-facebook-square"></i>
<i class="fab fa-twitter-square"></i>
<i class="fab fa-youtube-square"></i>
<i class="fab fa-instagram"></i>
</div>
<p>©Copyright Be Kind 2019</p>
</div>
</footer>
</div>
</body>
</html>