-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (130 loc) · 4.5 KB
/
index.html
File metadata and controls
132 lines (130 loc) · 4.5 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Project Make It</title>
<meta name="viewport" content="width=device-width, user-scalable=no">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/site.css">
<link rel="stylesheet" href="css/animate.css">
<script src="js/wow.min.js"></script>
<script>
new WOW().init();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-30850899-5', 'auto');
ga('send', 'pageview');
</script>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body id="landing-page">
<div id="pitch">
<section id="headline" class="logo-red-background">
<div id="have">
<p>You have <u>something</u>.</p>
<div id="somethings">
<i class="fa fa-bullhorn somethingsSequence1"></i> <i class="fa fa-gift somethingsSequence2"></i> <i class="fa fa-barcode somethingsSequence3"></i> <i class="fa fa-ticket somethingsSequence2"></i> <i class="fa fa-book somethingsSequence1"></i>
</div>
</div>
</section>
<section id="see-do" class="logo-green-background">
<div id="see">
<p>People need <br/>to see it</p>
<div id="see-graphics">
<picture>
<source
media="(min-width: 932px)"
srcset="img/seeing_eye-240px.png">
<source
media="(min-width: 430px)"
srcset="img/seeing_eye-120px.png">
<img src="img/seeing_eye-60px.png"/>
</picture>
<span class="fiveFrames">
<i class="fa fa-bullhorn fiveFrame1"></i>
<i class="fa fa-gift fiveFrame2"></i>
<i class="fa fa-barcode fiveFrame3"></i>
<i class="fa fa-ticket fiveFrame4"></i>
<i class="fa fa-book fiveFrame5"></i>
</span>
</div>
</div>
<i class="fa fa-arrow-right wow fadeInLeft"></i>
<div id="do" class="wow fadeInLeftDelayed">
<p><br/>...and do <wbr/>something.</p>
<div id="do-graphics">
<i class="fa fa-female fa-2x"></i><i class="fa fa-long-arrow-right wow stretchRight"></i>
<span class="fiveFrames">
<i class="fa fa-comments-o fiveFrame1"></i>
<i class="fa fa-thumbs-up fiveFrame2"></i>
<i class="fa fa-shopping-cart fiveFrame3"></i>
<i class="fa fa-share-alt-square fiveFrame4"></i>
<i class="fa fa-star-half-o fiveFrame5"></i>
</span>
</div>
</div>
</section>
<section id="consult" class="logo-blue-background">
<div id="consult-graphics">
<div id="people" class="wow slideInLeft">
<div>
<i class="fa fa-user"></i><i class="fa fa-user fa-3x"></i><i class="fa fa-user"></i>
</div>
</div>
<div id="together" class="wow slideInRight">
<div>
<i class="fa fa-users fa-5x"></i>
</div>
</div>
</div>
<div id="work">
<p>And your people need <br/>to work together, better.</p>
</div>
</section>
</div><!-- #pitch -->
<section id="close">
<div>
<p class="logo-text"><span class="logo-red">Project</span> <strong><span class="logo-green">Make</span> <span class="logo-blue">It</span></strong></p>
<p>makes custom software</p>
<p>that lives online</p>
<p>to get things done.</p>
</div>
</section>
<div id="action">
<div id="nameplate" class="logo-text">
<div>
<div id="logo">
<picture alt="Project Make It logo">
<source
media="(min-width: 430px)"
srcset="img/PMI_v07_medium.png"> <!-- width="98px" height="131px" -->
<img src="img/PMI_v07_small.png"/> <!-- width="49px" height="66px" -->
</picture>
<h1> Project <strong>Make It</strong></h1>
</div>
<div id="tagline">
<h2>Modern. Simple. Done.</h2>
</div>
</div>
</div>
<nav id="links">
<ul>
<div class="logo-red-bg-hover">
<a href="/about.html"><li>Who we are</li></a>
</div>
<div class="logo-green-bg-hover">
<a href="/showcase.html"><li>What we do</li></a>
</div>
<div class="logo-blue-bg-hover">
<a href="mailto:contact@projectmakeit.com" class="split upper"><li>Email us</li></a>
<a href="tel:+19189287644" id="telephone" class="split lower"><li>Call us</li></a>
</div>
</ul>
</nav>
</div>
</body>
</html>