-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·94 lines (76 loc) · 3.81 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
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
<!DOCTYPE html>
<html>
<head>
<title>Portfolio</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/main.css" type="text/css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:100,700" type="text/css">
<script src="http://code.jquery.com/jquery-3.1.1.min.js" integrity="sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="
crossorigin="anonymous">
</script>
<script src="scripts/app.js"></script>
</head>
<body >
<div id="sidebar-wrapper" >
<div id="close-btn" class="js-menu-close">
<img src="img/icons/x.svg">
</div>
<h2>Spike</h2>
<h2>Spiegel</h2>
<div class="sidebar-links">
<a href=#about>About</a>
<a href=#gallery>Gallery</a>
<a href=#contact>Contact</a>
</div>
</div>
<div id="intro" class="container-fluid landscape hero">
<div id="hamburger" class="js-menu-open"><img src="img/icons/menu.svg" alt="menu">
</div>
<h1>Spike Spiegel</h>
<h5>Freelance Photographer</h5>
<a href="#" title="Gallery"><button type="button" class="cta">Gallery</button></a>
</div>
<div id="about" class="container hero">
<h2>About Me</h2>
<div class="row">
<div class="col-md-6 left-col">
<h2>I'm a <br> self-taught photographer with a passion for travel and design </h2>
</div>
<div class="col-md-6 right-col">
<h5>I was born in <a href='https://www.google.com/maps/place/Cape+Town,+South+Africa' target='_blank'>Cape Town, South Africa</a> and moved around a lot as a kid. To keep me distracted, my parents gave me a camera. Since then, I look at the world through a lens. I've visited over 30 countries and taken almost one quarter of a million photographs, and I feel like I'm just getting started. From landscapes to personal portraits and exciting scenes, I love being able to capture a moment and share it with others. Join me on my journey!</h5>
</div>
</div>
</div>
<div id="gallery" class="container-fluid hero">
<h2>Gallery</h2>
<div class="row">
<div class="col-md-4"><img src="img/gallery/gallery-01.jpg" ></div>
<div class="col-md-4"><img src="img/gallery/gallery-02.jpg" ></div>
<div class="col-md-4"><img src="img/gallery/gallery-03.jpg" ></div>
</div>
<div class="row">
<div class="col-md-4"><img src="img/gallery/gallery-04.jpg" ></div>
<div class="col-md-4"><img src="img/gallery/gallery-05.jpg" ></div>
<div class="col-md-4"><img src="img/gallery/gallery-06.jpg" ></div>
</div>
</div>
<div class="container-fluid hero bridge">Hi</div>
<div id="contact" class="container-fluid hero">
<h2>Contact Me</h2>
<p>I'm available for freelance – from events like weddings to documenting your next adventure, let's chat!</p>
<a href="mailto:mail@example.com"><button type="button" class="cta">Contact</button></a>
<div id="social">
<a href="http://www.twitter.com"><img src="img/icons/twitter.svg"></a>
<a href="http://www.instagram.com"><img src="img/icons/instagram.svg"></a>
<a href="http://www.medium.com"><img src="img/icons/medium.svg"></a>
</div>
</div>
<div id="footer">
<div class="footer-item"><h4><b>Spike <br>Spiegel</b></h4></div>
<div class="footer-item"><a href="#intro">About</a></div>
<div class="footer-item"><a href="#gallery">Gallery</a></div>
<div class="footer-item"><a href="#contact">Contact</a></div>
<div ID="copyright"><span>© Spike Spiegel</span></div>
</div>
</body>
</html>