-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·66 lines (63 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Your description goes here">
<meta name="keywords" content="one, two, three">
<title>Blank Template with Navigation</title>
<!-- ImportGoogle fonts -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Oswald:400,700|Merriweather:700,900,700italic' rel='stylesheet' type='text/css'>
<!-- external CSS link -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="container">
<header>
<h1>Startup Matchmaker</h1>
<nav>
<ul>
<li><a href="#" class="prominent">FIND DEVELOPERS</a></li>
<li><a href="#" class="prominent">FIND DESIGNERS</a></li>
<li><a href="#">How it Works</a></li>
<li><a href="#">Our Team</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</header>
<div id= "subheader">
<h2>Because two brains <strike id="strikestyle">taste</strike> <span id="underlinestyle">are</span> better then one.</h2>
</div>
<div id= "main">
<div class= "convert">
<h2>Meet your Match!</h2>
<p>Have a great idea for a product, but need help making it a reality? We're here to help. Startup Matchmaker is the best place for designers and developers to find each other. </p>
<button class="yellow"> CREATE A PROFILE</button>
</div>
</div>
<div id= "subfooter">
<div class= "box">
<h2>Create a Profile</h2>
<p>Are you a Designer? Developer? Put yourself out there so that others can find you!
</p>
<button class= "greybutton ">SIGN UP NOW</button>
</div>
<div class= "box">
<h2>Find a Developer</h2>
<p>Looking for a fantastic developer to work with on the next big thing? Look no further.
</p>
<button class= "greybutton">START YOUR SEARCH</button>
</div>
<div class= "box">
<h2>Find a Designer</h2>
<p>Need someone who can make a product intuitive and appealing? Get ready.
</p>
<button class= "greybutton">START YOUR SEARCH</button>
</div>
</div>
<footer>
© 2013 Startup Matchmaker. Made in NY.
</footer>
</div><!-- #container -->
</body>
</html>