forked from bloominstituteoftechnology/User-Interface
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (107 loc) · 3.35 KB
/
index.html
File metadata and controls
117 lines (107 loc) · 3.35 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Great Idea!</title>
<link
href="https://fonts.googleapis.com/css?family=Bangers|Titillium+Web"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/index.css" />
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>
<body class="container">
<header>
<nav class="navigation">
<a href="#">Services</a>
<a href="#">Product</a>
<a href="#">Vision</a>
<a href="#">Features</a>
<a href="#">About</a>
<a href="#">Contact</a>
<img class="logo" src="img/logo.png" alt="Great Idea! Company logo." />
</nav>
</header>
<!--hero main section-->
<section class="hero-main">
<div class="title-main">
<h1>Innovation</h1>
<br />
<h1>on</h1>
<br />
<h1>Demand</h1>
<button class="button">Get Started</button>
</div>
<div>
<img src="img/header-img.png" alt="Image of a code snippet." />
</div>
</section>
<!--main information section-->
<section>
<div class="left-info">
<h3>Features</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse
vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam
convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
<div class="right-info">
<h3>About</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse
vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam
convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
</section>
<!--hero main image in middle of page section-->
<section>
<div class="image-wrapper">
<img
class="hero-image"
src="img/mid-page-accent.jpg"
alt="Image of code snippets across the screen"
/>
</div>
</section>
<!--secondary information section-->
<section class="secondary-info">
<div>
<h3>Services</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse
vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam
convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
<div>
<h3>Product</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse
vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam
convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
<div>
<h3>Vision</h3>
<p>
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse
vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam
convallis augue justo, at imperdiet metus scelerisque quis.
</p>
</div>
</section>
<!--footer section-->
<footer>
<h3>Contact</h3>
<p>123 Way 456 Street</p>
<p>Somewhere, USA</p>
<p>1 (888) 888-8888</p>
<span>sales@greatidea.io</span>
<span>Great Idea! 2018</span>
</footer>
</body>
</html>