-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
111 lines (94 loc) · 3.36 KB
/
projects.html
File metadata and controls
111 lines (94 loc) · 3.36 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Projects</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/TweenLite.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/latest/plugins/CSSPlugin.min.js"></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="nav-links">
<nav>
<h4>S&J</h4>
<img class="nav-button" src="img/nav-hamburger-close.png"/>
</nav>
<div class="nav-link"><a href="./index.html">Home</a></div>
<div class="nav-link"><a href="./services.html">Services</a></div>
<div class="nav-link"><a href="./contact.html">Contact</a></div>
<div class="nav-link"><a href="./about.html">About Us</a></div>
<div class="nav-link"><a href="./projects.html">Projects</a></div>
</div>
<div class="container projects">
<header>
<nav>
<h4>S&J</h4>
<img class="nav-button" src="img/nav-hamburger.png"/>
</nav>
<div class="banner">
<h1 class="title">
Projects
</h1>
</div>
</header>
<!------------------------------PROJECTS------------------------------>
<section id="vue">
<project v-for="project in projects"
v-bind:key="project.id"
v-bind:title="project.title"
v-bind:description="project.description"
v-bind:image="project.image"
/>
<carousel>
</carousel>
</section>
<!------------------------------FOOTER------------------------------>
<footer>
<div class="footer-content">
<div class="email">
<h4>Interested in starting a project?</h4>
<h4>Let’s talk:</h4>
<input placeholder="Enter gmail"/>
<span>We'll never share your email with anyone else</span>
</div>
<div class="location">
<h4>New York</h4><br>
<address>
123 Lane<br><br>
Suite 100<br><br>
Albany, NY 12345<br><br>
202 555 0144<br><br>
</address>
</div>
<div class="location">
<h4>Florida</h4><br>
<address>
Ocean Drive<br><br>
Suite 201<br><br>
Orlando, FL 22345<br><br>
502 555 0144<br><br>
</address>
</div>
<div class="location">
<h4>California</h4><br>
<address>
Mountain Street<br><br>
Suite 105<br><br>
San Diego, CA 22345<br><br>
702 555 0144<br><br>
</address>
</div>
</div>
<span>Copyright © 2018 Smith and Jones</span>
</footer>
</div>
<script src="js/index.js"></script>
<script src="components/Projects/Projects.js"></script>
</body>
</html>