-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
154 lines (154 loc) · 4.9 KB
/
index.html
File metadata and controls
154 lines (154 loc) · 4.9 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!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, chrome=1" />
<link rel="stylesheet" href="./style.css" />
<title>Homepage of Haoduoding</title>
</head>
<body>
<div class="portofolio">
<header>
<nav>
<h3 class="logo">Haoduoding</h3>
<svg
class="menu"
width="43"
height="23"
viewBox="0 0 43 23"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<line y1="1.5" x2="43" y2="1.5" stroke="white" stroke-width="3" />
<line y1="11.5" x2="28" y2="11.5" stroke="white" stroke-width="3" />
<line y1="21.5" x2="16" y2="21.5" stroke="white" stroke-width="3" />
</svg>
<div class="nav-open">
<div class="contact">
<h3>Email</h3>
<p>haoduoding@gmail.com</p>
</div>
<div class="social">
<h3>Social</h3>
<div class="social-links">
<img src="Facebook.svg" alt="facebook" />
<img src="Twitter.svg" alt="facebook" />
<img src="Instagram.svg" alt="facebook" />
</div>
</div>
</div>
</nav>
<main>
<section class="page photographer">
<div class="details">
<h1>Yiding Yang</h1>
<h2>About Me</h2>
<p>08/29/2019</p>
</div>
<div class="hero">
<a href="./photo.html">
<img
class="model-left"
src="model-left.JPG"
alt="model"
/>
<img
class="model-right"
src="model-right.JPG"
alt="model"
/>
</a>
</div>
</section>
<section class="page chef">
<div class="details">
<h1>Snowboarder</h1>
<h2>Aspen Snowmass</h2>
<p>01/10/2019</p>
</div>
<div class="hero">
<a href="./chef.html">
<img class="model-left" src="chef-left.JPG" alt="model" />
<img
class="model-right"
src="chef-right.JPG"
alt="model"
/>
</a>
</div>
</section>
<section class="page hairstyle">
<div class="details">
<h1>Traveler</h1>
<h2>Phuket</h2>
<p>02/04/2016</p>
</div>
<div class="hero">
<a href="./barber.html">
<img class="model-left" src="hair-left.JPG" alt="model" />
<img
class="model-right"
src="hair-right.JPG"
alt="model"
/>
</a>
</div>
</section>
<div class="pages">
<div class="page-1">
<h3>01</h3>
<svg
class="slide active"
width="12"
height="12"
viewBox="0 0 12 12"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="6" cy="6" r="6" fill="white" />
</svg>
</div>
<div class="page-2">
<h3>02</h3>
<svg
class="slide "
width="12"
height="12"
viewBox="0 0 12 12"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="6" cy="6" r="6" fill="white" />
</svg>
</div>
<div class="page-3">
<h3>03</h3>
<svg
class="slide"
width="12"
height="12"
viewBox="0 0 12 12"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<circle cx="6" cy="6" r="6" fill="white" />
</svg>
</div>
</div>
</main>
</header>
</div>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TweenMax.min.js"
integrity="sha256-lPE3wjN2a7ABWHbGz7+MKBJaykyzqCbU96BJWjio86U="
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/2.1.3/TimelineMax.min.js"
integrity="sha256-fIkQKQryItPqpaWZbtwG25Jp2p5ujqo/NwJrfqAB+Qk="
crossorigin="anonymous"
></script>
<script src="app.js"></script>
</body>
</html>