-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
104 lines (104 loc) · 3.02 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<script
src="https://kit.fontawesome.com/f8307b73b6.js"
crossorigin="anonymous"
></script>
<title>Babies Are Awesome !!!</title>
</head>
<body>
<header class="images">
<nav>
<div>
<i class="fas fa-baby"></i>
</div>
<div>
<ul>
<li><a href="#">Login</a></li>
<li><a href="#">Gallery</a></li>
<li><a href="#">About Us</a></li>
</ul>
</div>
</nav>
<section class="grid-container">
<div class="first-item">
<h1>Babies Are Awesome</h1>
<p>
They’re cute, chubby and sure to bring a smile to any person who
crosses their path.
</p>
</div>
<div class="second-item">
<button>Sign Up</button>
<button>Login</button>
</div>
<div class="third-item">
<img src="images/3.jpg" alt="This is a placeholder for an image" />
</div>
</section>
</header>
<main class="grid">
<h2>One Look Makes Your Day 👶</h2>
<div class="flex-container">
<div>
<figure>
<img src="images/1.jpg" alt="" />
<figcaption>You’re my favorite reason to lose sleep.</figcaption>
</figure>
</div>
<div>
<figure>
<img src="images/4.jpg" alt="" />
<figcaption>Your first breath took ours away.</figcaption>
</figure>
</div>
<div>
<figure>
<img src="images/5.jpg" alt="" />
<figcaption>
Something tells me I am going to love him forever.
</figcaption>
</figure>
</div>
<div>
<figure>
<img src="images/6.jpg" alt="" />
<figcaption>
Babies are bits of stardust, blown from the hand of God.
</figcaption>
</figure>
</div>
</div>
</main>
<section class="content">
<p class="italics">
Don’t let the memories fade. Capture the moments you’ll never want to
forget. Safely save, print or share. Cherish your special keepsakes
forever.
</p>
<p>-Thor, God of Thunder</p>
<p class="normal">
Register today and recieve a unique customized baby photo daily.
</p>
<button>Register Today</button>
<img src="" alt="" />
</section>
<footer>
<div class="tag">
<p>Babies are Awesome !!!</p>
</div>
<div class="logo">
<i class="fab fa-facebook"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-youtube"></i>
<i class="fab fa-instagram"></i>
</div>
<div><p>Made with love in Deoghar ❤️</p></div>
</footer>
</body>
</html>