-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
95 lines (91 loc) · 3.87 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
<!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>Freebie</title>
<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=Homemade+Apple&family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/modern-normalize/1.1.0/modern-normalize.min.css"
integrity="sha512-wpPYUAdjBVSE4KJnH1VR1HeZfpl1ub8YT/NKx4PuQ5NmX2tKuGu6U/JRp5y+Y8XG2tV+wKQpNHVUX03MfMFn9Q=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<link rel="stylesheet" href="./css/styles.css" />
<link rel="stylesheet" href="./css/main.min.css" />
</head>
<body>
<header class="header container">
<a href="./index.html" class="header__logo">logo</a>
<nav class="header__nav">
<ul class="header__list">
<li class="header__item"><a href="" class="header__link">Home</a></li>
<li class="header__item"><a href="" class="header__link">About Us</a></li>
<li class="header__item"><a href="" class="header__link">Services</a></li>
<li class="header__item"><a href="" class="header__link">Blogs</a></li>
</ul>
</nav>
<button type="button" class="header__btn">Gift Finder</button>
</header>
<main>
<section class="gift container">
<div class="gift__about">
<h1 class="gift__title">Find a gift for your wife or girlfriend</h1>
<p>Struggling to find a gift for your wife or girlfriend? No problem!</p>
<button class="gift__button" type="button">Find gift now</button>
</div>
<img class="gift__img" src="./images/background.jpg" alt="married couple" width="721" />
</section>
<section class="feature container">
<img
class="feature__img"
src="./images/media-background.jpg"
alt="greeting card"
width="722"
/>
<div class="feature__about">
<h2 class="feature__title">How we work</h2>
<p class="feature__text">
We’ve actually already asked hundreds of women what they want, and made a database with
the results. All you have to do is take our short survey that only takes seconds, and
our proprietary algorithm will match you with a few perfect gift options.
</p>
<button class="feature__button" type="button">Learn More</button>
</div>
</section>
<section class="posts container">
<h2 class="post__title">Gifts for all Occasions</h2>
<p class="post__about">“Try our web app to find the best gifts for all occasions”</p>
<ul class="post__list">
<li class="post__item">
<img src="./images/rectangle-1.jpg" alt="" class="post__img" width="270" />
<h3 class="post__subtitle">Birthday</h3>
<a>See More ›</a>
</li>
<li class="post__item">
<img src="./images/rectangle-2.jpg" alt="" class="post__img" width="270" />
<h3 class="post__subtitle">Anniversary</h3>
<a>See More ›</a>
</li>
<li class="post__item">
<img src="./images/rectangle-3.jpg" alt="" class="post__img" width="270" />
<h3 class="post__subtitle">Valentine's Day</h3>
<a>See More ›</a>
</li>
<li class="post__item">
<img src="./images/rectangle-4.jpg" alt="" class="post__img" width="270" />
<h3 class="post__subtitle">Christmas</h3>
<a>See More ›</a>
</li>
</ul>
</section>
</main>
</body>
</html>