-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (68 loc) · 3.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Landing Page</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="style.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div>
<div class="top">
<div class="header">
<div style="color:#e5e7eb; font-size: 40px;font-weight: bold;margin:20px">Header Logo</div>
<ul style="list-style-type:none;margin:25px">
<li><a href="#" style="text-decoration:none;">header link one</a></li>
<li><a href="#" style="text-decoration:none;">header link two</a></li>
<li><a href="#" style="text-decoration:none;">header link three</a></li>
</ul>
</div>
<div class="top-container">
<div style="width:390px">
<div style="color:#f9faf8;font-size:48px;font-weight:bolder;margin-bottom: 10px ">This website is awesome</div>
<div style="color:#e5e7eb;font-size:18px;margin-bottom: 10px;">Lorem ipsum dolor sit amet consectetur adipisicing elit. Magnam, dolore tempora unde repellat nisi ullam dolorum eveniet aut nobis perspiciatis vitae deleniti. Iste molestias ratione numquam debitis, velit porro! Dolor.</div>
<button class="signup1" style="margin-top:8px;background:royalblue;color:white; border-radius: 5px; width:100px;height:30px; font-weight: bold;">Sign Up</button>
</div>
<img src="imgtop.jpeg" alt="top image" style="width:500px;height:auto">
</div>
</div>
<div class="top-middle">
<div class="middle-header">Some Random Information</div>
<div class="mainfourimages">
<div class="fourimages">
<img src="img22.png" alt="Image">
<div>This is some subtext under some illustration or image</div>
</div>
<div class="fourimages">
<img src="img22.png" alt="Image">
<div>This is some subtext under some illustration or image</div>
</div>
<div class="fourimages">
<img src="img22.png" alt="Image">
<div>This is some subtext under some illustration or image</div>
</div>
<div class="fourimages">
<img src="img22.png" alt="Image">
<div>This is some subtext under some illustration or image</div>
</div>
</div>
</div>
<div class="bottom-middle">
<div class="quote" style="font-size:36px;max-width: 750px;font-weight: lighter;opacity: 0.6">
Lorem ipsum dolor sit amet consectetur adipisicing elit. Magnam, dolore tempora unde repellat nisi ullam dolorum eveniet aut nobis perspiciatis vitae deleniti. Iste molestias ratione numquam debitis, velit porro! Dolor.
<span style="color:black;font-weight:bold;font-size:32px;position:relative;right:-200px">-Thor,God of Thunder</span>
</div>
</div>
<div class="bottom">
<div class="bottom-container">
<div style="margin:25px;color:aliceblue"><strong style="font-size:34px">Call to action!It's time!</strong><br>Sing up for our produtc by clicking that button right over here</div>
<button class="signup2">Sign up</button>
</div>
</div>
<div class="footer">
<div>Made with love by Rohan Jha</div>
</div>
</div>
</body>
</html>