-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
152 lines (125 loc) · 4.25 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
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css" integrity="sha384-Smlep5jCw/wG7hdkwQ/Z5nLIefveQRIY9nfy6xoR1uRYBtpZgI6339F5dgvm/e9B"
crossorigin="anonymous">
<!-- Google Font -->
<link href="https://fonts.googleapis.com/css?family=Bungee+Hairline|Cutive+Mono|Iceland|Josefin+Sans:700|Righteous" rel="stylesheet">
<!--Font Awesome-->
<link href="./libs/css/all.min.css" rel="stylesheet">
<script defer src="./libs/js/all.min.js"></script>
<!-- Animate on Scroll CSS -->
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css">
<!-- Local CSS -->
<link rel="stylesheet" href="./css/styles.css">
<link rel="stylesheet" href="./css/responsive.css">
<link rel="stylesheet" href="./css/animations.css">
<link rel="shortcut icon" type="image/png" href="./img/faviconV2.png" />
<title>Zak Sakata Photography</title>
</head>
<body>
<video autoplay muted loop id="homeVideo">
<source src="img/home.mp4" type="video/mp4">
</video>
<!-- <div class="container">
<div class="row">
<div class="col-12 text-center" id="homeText">
Zak Sakata
</div>
</div>
</div> -->
<div id="overlay">
<img src="./img/initials.png" id="initials">
<div class="overlayOpt activeOpt">
<a href="./index.html">
Home
</a>
</div>
<div class="overlayOpt">
<a href="./about/index.html">
About
</a>
</div>
<div class="overlayOpt">
<a href="./gallery/index.html">
Gallery
</a>
</div>
<div class="overlayOpt">
<a href="./presets/index.html">
Presets
</a>
</div>
<br>
<br>
<div class="overlayOpt">
<a href="https://zaksakata.com">
Main Site
</a>
</div>
<div class="overlayOpt">
<a href="./contact/index.html">
Contact
</a>
</div>
</div>
<div id="darken">
</div>
<div class="row h-100 no-gutters">
<div class="col-2"></div>
<div class="col-8 my-auto" id="homeText">
<!-- Zak Sakata<br><span class="homeSubTxt" style="text-decoration: line-through">professional</span><span class="homeSubTxt"> photographer</span> -->
Zak Sakata<br><span class="homeSubTxt">photography</span>
</div>
<div class="col-2 mt-2 pt-1 pt-lg-0 mt-lg-0 my-lg-auto">
<div class="overlayClose" id="sideMenu">
<hr id="line1">
<hr id="line2">
<hr id="line3">
</div>
</div>
</div>
<div id="socialLinks">
<a href="https://linkedin.com/in/zaksakata">
<span class="iconSize mx-2">
<i class="fab fa-linkedin-in"></i>
</span>
</a>
<a href="https://www.instagram.com/zak.s_/">
<span class="iconSize mx-2">
<i class="fab fa-instagram"></i>
</span>
</a>
<a href="https://twitter.com/ZakSakata">
<span class="iconSize mx-2">
<i class="fab fa-twitter"></i>
</span>
</a>
<a href="mailto:sakata.zak@gmail.com" target="_top">
<span class="iconSize mx-2">
<i class="fas fa-envelope-open"></i>
</span>
</a>
</div>
<!-- <div id="homeText">
Zak Sakata
</div> -->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script>window.jQuery || document.write('<script src="../assets/libs/jquery-3.3.1.min.js"><\/script>');</script>
<!-- Boostrap -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js" integrity="sha384-o+RDsa0aLu++PJvFqy8fFScvbHFLtbvScb8AjopnFD+iEQ7wo/CG0xlczd+2O/em"
crossorigin="anonymous"></script>
<!-- Animate on Scroll JS -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<!-- Local JS -->
<script src="./js/main.js"></script>
</body>
</html>