-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (60 loc) · 2.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page</title>
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<div class="header">
<div class="logo">Header Logo</div>
<div class="link first-link"><a href="#">link one</a></div>
<div class="link"><a href="#">link two</a></div>
<div class="link"><a href="#">link three</a></div>
</div>
<div class="hero-part">
<div class="text-part">
<h1 class="hero-header">This Website Is Awesome</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Perferendis hic, quaerat ex ipsa provident repudiandae!</p>
<button>Sign Up</button>
</div>
<div class="img-part">
<img src="./stunning-image.jpg" alt="sweden mountain image" width="500px" height="auto">
</div>
</div>
<div class="middle-inf">
<h2>Some Random Information</h2>
<div class="boxes-container">
<div>
<div class="box"></div>
<p class="text">Lorem ipsum dolor sit amet consectetur adipisicing.</p>
</div>
<div>
<div class="box"></div>
<p class="text">Lorem ipsum dolor sit, amet consectetur adipisicing.</p>
</div>
<div>
<div class="box"></div>
<p class="text">Lorem ipsum dolor, sit amet consectetur adipisicing.</p>
</div>
<div>
<div class="box"></div>
<p class="text">Lorem ipsum dolor sit amet, consectetur adipisicing.</p>
</div>
</div>
</div>
<div class="quote-part">
<p class="quote">Every day is a fresh chance to do something awesome!</p>
<p class="quoter">Random</p>
</div>
<div class="call-action">
<div class="text">
<p class="call">Call to action! it's time!</p>
<p class="motivation">Sign up now for our product by clicking that button right over there</p>
</div>
<button>Sign Up</button>
</div>
<footer>Copyright Youssef 2024 - TOP</footer>
</body>
</html>