-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (56 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTR-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Landing Page</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class = "Section-1">
<div class="Header">
<div class="Logo">
<img src="./Images/HeadLogo.png" alt="Project logo. Represents odin with the project name.">
</div>
<ul class="right-links">
<li><a href="#">L1</a></li>
<li><a href="#">L2</a></li>
<li><a href="#">L3</a></li>
</ul>
</div>
<div class="Main-title-text">
This is Awesome fr
</div>
<div class="Secondary">
This is secondary text about website follwed by Sign up button
</div>
<button class="Sign-up">Sign-up</button>
<div class = "PlaceImg">
<img src="./Images/Placeimg.jpg" alt="Placeholder img">
</div>
</div>
<div class = "Section-2">
<div class="Info-header">
Some Random Info
</div>
<div class = "Card">
<!--Image1-->
<div class="text">Info 1</div>
</div>
<div class = "Card">
<!--Image1-->
<div class="text">Info 2</div>
</div>
<div class = "Card">
<!--Image1-->
<div class="text">Info 3</div>
</div>
</div>
<div class="Section-3">
<div class="Quote">Some random quote</div>
</div>
<div class ="Footer">
<div class="T2">@Copyright Decimator_003 2024</div>
</div>
</body>
</html>