forked from bloominstituteoftechnology/User-Interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (93 loc) · 3.12 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!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>
<header>
<nav class = "navBtns">
<ul>
<li><a href = "#">Services</a></li>
<li><a href = "#">Product</a></li>
<li><a href = "#">Vision</a></li>
<li><a href = "#">Features</a></li>
<li><a href = "#">About</a></li>
<li><a href = "#">Contact</a></li>
</ul>
</nav>
</header>
<img class="logo" src="img/logo.png" alt="Great Idea! Company logo.">
<article>
<section id= "title">
<h2>
<p id = "top-text">
Innovation
</p>
<p id = "middle-text">
On
</p>
<p id = "bottom-text">
Demand
<p>
</h2>
<div>
<a href = "#">Get Started</a>
</div>
</section>
<img src="img/header-img.png" alt="Image of a code snippet.">
<div id = "black-line"></div>
<section id= "Features">
<h3>Features</h3>
<div>
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.
</div>
</section>
<section id ="About">
<h3>About</h3>
<div>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.
</div>
</section>
<img class="middle-img" src="img/mid-page-accent.jpg" alt="Image of code snippets across the screen">
<section id = "Services">
<h3>Services</h3>
<div>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.
</div>
</section>
<section id = "Product">
<h3>Product</h3>
<div>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.
</div>
</section>
<section id= "Vision">
<h3>Vision</h3>
<div>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.
</div>
</section>
</article>
<footer>
<p>Contact</p>
<address>
123 Way 456 Street <br>
Somewhere, USA
</address>
<p class = "contactInfo">
1 (888) 888-8888
</p>
<p class = "contactInfo">
</p>
</footer>
<div id = "copyright">Copyright Great Idea! 2018</div>
</body>
</html>