-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
108 lines (96 loc) · 3.82 KB
/
projects.html
File metadata and controls
108 lines (96 loc) · 3.82 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Projects</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">
<script src="js/carousel.js" async></script>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="container">
<header>
<div class="logo-nav">
<h1>S&J</h1>
<img src="img/nav-hamburger.png" class="nav-hamburger">
</div>
<nav class="nav-page hide">
<div class="awrapper">
<a href="index.html">Home</a>
<a href="aboutus.html">About</a>
<a href="services.html">Services</a>
<a href="contact.html">Contact</a>
<a href="projects.html">Projects</a>
</div>
<img src="img/nav-hamburger-close.png" class="exit-icon hide">
</nav>
<div class="txt-jumbo">
<img src="img/home/home-villas-img.png" class="header-img">
<p class="header-text">Projects</p>
</div>
</header>
<div class="carousel">
<div class="left-button">
<
</div>
<img src="img/projects/proj1mobile.jpeg" class="picture" data-pict="1" />
<img src="img/projects/proj2a.jpeg" class="hide picture" data-pict="2" />
<img src="img/projects/proj3.jpeg" class="hide picture" data-pict="3" />
<img src="img/projects/proj4.jpeg" class="hide picture" data-pict="4" />
<div class="right-button">
>
</div>
</div>
<div class="carousel-text">
<p class="subtext" data-pict="1">Lorem ipsum dolor sit amet consectetur adipisicing elit. Error ex laborum reasfabo vitae!</p>
<p class="subtext hide" data-pict="2">Lorem ipsum dolor sit amet consectetur adipisicing elit. Error ex laboas veritatis velit aut rem explicabo vitae!</p>
<p class="subtext hide" data-pict="3">Lorem ipsum dolor sit aasfd fdsm repudiandae accusamus repellendus veritatis velit aut rem explicabo vitae!</p>
<p class="subtext hide" data-pict="4">Lorem ipsum dolor sitsad veritatis velit aut rem explicabo vitae!</p>
</div>
<footer class="footer">
<div class="top-info">
<div class="form">
<h3>Interested in starting a project?</h3>
<p>Let's talk:</p>
<input type="email" form="email" name="email" placeholder="Enter email">
<p class="sub-text">We'll never share your email with anyone else.</p>
</div>
<div class="address">
<h3>New York</h3>
<p>123 Lane</p>
<p>Suite 100</p>
<p>Albany, NY 12345</p>
<p>202 555 0144</p>
</div>
<div class="address">
<h3>Florida</h3>
<p>Ocean Drive</p>
<p>Suite 201</p>
<p>Orlando, FL 22345</p>
<p>502 555 0144</p>
</div>
<div class="address">
<h3>California</h3>
<p>Mountain Street</p>
<p>Suite 105</p>
<p>San Diego, CA 22345</p>
<p>702 555 0144</p>
</div>
</div>
<div class="copyright">
<p>Copyright © 2018 Smith and Jones</p>
</div>
</footer>
</div>
<!--container-->
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<script src="js/like_button_container.js"></script>
<script src="js/index.js"></script>
</body>
</html>