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
96 lines (72 loc) · 2.93 KB
/
index.html
File metadata and controls
96 lines (72 loc) · 2.93 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
<!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 href="https://fonts.googleapis.com/css?family=Playfair+Display&display=swap" 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>
<nav>
<ul>
<a href="#"><li>Services</li></a>
<a href="#"><li>Product</li></a>
<a href="vision.html"><li>Vision</li></a>
<a href="#"><li>Features</li></a>
<a href="#"><li>About</li></a>
<a href="#"><li class="last-li">Contact</li></a>
<img class="logo" src="img/logo.png" alt="Great Idea! Company logo.">
</ul>
</nav>
<header>
<div class="title">
<h1>
Innovation<br/>
On<br/>
Demand<br/>
</h1>
<div class="button">Get Started</div>
</div>
<!--<img src="img/header-img.png" alt="Image of a code snippet." class="top-img">-->
</header>
<section class="main-content">
<div class="top-divs">
<h2>Features</h2>
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>
<div class="top-divs">
<h2>About</h2>
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>
<!--<img class="middle-img" src="img/mid-page-accent.jpg" alt="Image of code snippets across the screen">-->
<div class="bottom-divs">
<h2>Services</h2>
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>
<div class="bottom-divs">
<h2>Product</h2>
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>
<div class="bottom-divs">
<h2>Vision</h2>
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 class="contact-content">
<h2>Contact</h2>
<address>
123 Way 456 Street<br>
Somewhere, USA<br><br>
1 (888) 888-8888<br><br>
sales@greatidea.io<br>
</address>
</section>
<footer>
Copyright Great Idea! 2018
</footer>
</body>
</html>