-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·66 lines (66 loc) · 3.48 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-us">
<head>
<meta charset="utf-8">
<title>Startup Matchmaker</title>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700|Oswald:700|Merriweather:700,700italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header id="page-header">
<div class="wrapper">
<h1><a href="index.html">Startup Matchmaker</a></h1>
<nav>
<ul>
<li><strong><a href="developers.html">Developers</a></strong></li>
<li><strong><a href="designers.html">Designers</a></strong></li>
<li><a href="how.html">How it Works</a></li>
<li><a href="team.html">Our Team</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</nav>
</div>
</header>
<p class="tagline">Because two brains <del>taste</del> <ins>are</ins> better than one.</p>
<section class="banner">
<div class="wrapper">
<div class="blurb">
<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>
<a class="button" href="#">Create a Profile</a>
</div>
</div>
</section>
<div class="wrapper">
<section class="touts">
<section class="tout">
<header>
<h3>Create a Profile</h3>
</header>
<p>Are you a Designer? Developer? Put yourself out there so that others can find you!</p>
<a class="button" href="#">Sign Up Now</a>
</section>
<section class="tout">
<header>
<h3>Find a Developer</h3>
</header>
<p>Looking for a fantastic developer to work with on the next big thing? Look no further.</p>
<a class="button" href="developers.html">Start Your Search</a>
</section>
<section class="tout">
<header>
<h3>Find a Designer</h3>
</header>
<p>Need someone who can make a product intuitive and appealing? Get ready.</p>
<a class="button" href="designers.html">Start Your Search</a>
</section>
</section>
</div>
<footer>
<div class="wrapper">
© 2013 Startup Matchmaker. Made in NY.
</div>
</footer>
</body>
</html>