forked from bloominstituteoftechnology/User-Interface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (88 loc) · 3.67 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 href="https://fonts.googleapis.com/css?family=Share+Tech+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/general.css">
<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>
<div class="container">
<!-- main header -->
<header id="main-header">
<!-- main navigation -->
<nav id="main-nav-bar">
<a href="#">Services</a>
<a href="#">Product</a>
<a href="#">Vision</a>
<a href="#">Features</a>
<a href="about.html">About</a>
<a href="#">Contact</a>
</nav>
<div id="logo-container"></div>
</header>
<!-- main content -->
<main>
<!-- main content header -->
<section id="main-content-header">
<header id="content-header">
<h1>Innovation<br>
On<br>
Demand</h1>
<div id="get-started-button-container">
<button id="get-started-button">Get Started</button>
</div>
</header>
<div id="header-img-container">
<img src="img/header-img.png" alt="Image of a code snippet.">
</div>
</section> <!-- end main content header-->
<!-- main content section -->
<section class="main-content">
<!-- top section -->
<section id="top-content">
<div class="text-box">
<h4>Features</h4>
<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="text-box">
<h4>About</h4>
<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> <!-- end top section -->
<!-- middle section -->
<section id="middle-content"></section>
<!-- bottom section -->
<section id="bottom-content">
<div class="text-box">
<h4>Services</h4>
<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="text-box">
<h4>Product</h4>
<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="text-box">
<h4>Vision</h4>
<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> <!-- end bottom section -->
</section> <!-- end main content section -->
</main> <!-- end main content -->
<!-- main footer -->
<footer>
<h4>Contact</h4>
<p>123 Way 456 Street<br>
Somewhere, USA</p>
<p>1 (888) 888-8888</p>
<p>[email protected]</p>
<p id="copyright">Copyright Great Idea! 2018</p>
</footer>
</div>
</body>
</html>