-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (71 loc) · 3.25 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
<!DOCTYPE html>
<html>
<head>
<title>Landing Page</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="header">
<div class="menu">
<div class="logo">Header Logo</div>
<div class="header_link1">header link one</div>
<div class="header_link2">header link two</div>
<div class="header_link3">header link three</div>
</div>
<!-- This is Div for Information -->
<div class="info">
<div class="main_text">This website is awesome</div>
<div class="secondary_text">This website has some subtext that goes here under the main title. It's smaller font and the color is lower contrast.</div>
<button class="signup_btn">Sign up</button>
</div>
<div class="main_pic">
<img src="./chandrayan2.png" alt="ISRO chandrayan2 pic">
</div>
</div>
<!-- This is the 2nd Body of Lander Page -->
<div class="s_2">
<div class="sec_2">Some random information.</div>
<div class="info_class">
<div class="info1">
<img src="./chandrayan2.png" alt="ISRO chandrayan2 pic">
</div>
<div class="info2"> <!-- Image 2 -->
<img src="./chandrayan2.png" alt="ISRO chandrayan2 pic">
</div>
<div class="info3"> <!-- Image 3 -->
<img src="./chandrayan2.png" alt="ISRO chandrayan2 pic">
</div>
<div class="info4"> <!-- Image 4 -->
<img src="./chandrayan2.png" alt="ISRO chandrayan2 pic">
</div>
</div>
<div class="information">
<p class="info1txt1">This is some subtext under an illustration of image</p>
<p class="info1txt2">This is some subtext under an illustration of image</p>
<p class="info1txt3">This is some subtext under an illustration of image</p>
<p class="info1txt4">This is some subtext under an illustration of image</p>
</div>
</div>
<!-- This is 3rd Section of Lander Page -->
<div class="sec_3">
<div class="quote">
This is an inspiring quote, or a testimonial from a customer. Maybe it's just filling up space, or maybe people will actually read it. Who knows? All I know is that it looks nice.
</div>
<div class="author_name">
~Thor, God of Thunder
</div>
</div>
<!-- This is 4th section of Lander Page -->
<div class="contact_now">
<div class="contact_details">
<div class="contact_main">Call to action! It's time!</div>
<div class="contact_text">Sign up for our product by clicking that button right over there!</div>
</div>
<button class="last_btn">Sign up</button>
</div>
<div class="footer">
<p class="ft">Copyright © by Aadi.7</p>
</div>
</body>
</html>