-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (87 loc) · 3.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing</title>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 class="header_logo">Header Logo</h1>
<h6 class="header_link">header link one</h6>
<h6 class="header_link">header link two</h6>
<h6 class="header_link_last">header link three</h6>
</header>
<div class="main_section">
<div class="main_content">
<h1 class="hero_text">This website is <br> awesome</h1>
<p class="hero_secondary">
This website has some subtext thatgoes here under the <br>
main title. It's a smaller font and the color is lower <br>
contrast
</p>
<button class="signup">Sign up</button>
</div>
<img class="mainimg" src="./src/image.jpg">
</div>
<div class="information">
<h1 class="information_header">Some random information</h1>
<div class="content_flex">
<div class="image_containers">
<div class="images"></div>
<p class="image_subtext">
this is some subtext <br>
under an ilustration <br>
or image
</p>
</div>
<div class="image_containers">
<div class="images"></div>
<p class="image_subtext">
this is some subtext <br>
under an ilustration <br>
or image
</p>
</div>
<div class="image_containers">
<div class="images"></div>
<p class="image_subtext">
this is some subtext <br>
under an ilustration <br>
or image
</p>
</div>
<div class="image_containers">
<div class="images"></div>
<p class="image_subtext">
this is some subtext <br>
under an ilustration <br>
or image
</p>
</div>
</div>
</div>
<div class="quote">
<p class="italics">
This is an inspiring quote, or a testimonial from a <br>
customer. Maybe it's just filling up space, or maybe <br>
people will actually read it. Who knows? All I know <br>
is that it looks nice.
</p>
<h6 class="author">-Thor, God of Thunder</h6>
</div>
<div class="call_to_action">
<div class="call_banner">
<div class="call_left">
<h5 class="call_header">Call to action! It's time!</h5>
<p class="call_p">
Signup for our product by click that button right over there!
</p>
</div>
<button class="call_button">Sign up</button>
</div>
</div>
</body>
</html>