-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (41 loc) · 1.86 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
<!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">
<title>Birthday Gift</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Happy+Monkey&display=swap" rel="stylesheet">
</head>
<body>
<div id="container">
<img src="/images/myimg.jpeg" id="my-img">
<h1><span>Congratulations!</span></h1>
<h1>Today is Dawit's birthday 🎉</h1>
<h2>26 years old</h2>
<div class="col">
<input type="date" class="form-control" id="date"
name="date">
</div>
</div>
<div class="gift-section">
<div class="gift-items">
<h2 class="gift-title">Here's how happy I am for you today 🥳</h2>
<h3 class="gift-hint">(Hover over the gift)</h3>
<div class="gift-img-section" id="gift-present-one"></div>
<h2 class="gift-title">How people react when you enter the room 😍</h2>
<div class="gift-img-section" id="gift-present-two"></div>
<h2 class="gift-title">If I had to describe you with ONE word 👇</h2>
<div class="gift-img-section" id="gift-present-three"></div>
<h2 class="gift-title">The only person as badass as you 💪</h2>
<div class="gift-img-section" id="gift-present-four"></div>
</div>
</div>
<!-- Add the footer here. -->
<p id="footer">Want to create your own Birthday GIFt site? Take <a href="https://scrimba.com/learn/htmlandcss" target="_blank">this HTML & CSS course.</a></p>
<script src="script.js"></script>
</body>
</html>