-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchef.html
77 lines (74 loc) · 2.6 KB
/
chef.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/style.css">
<title>Document</title>
</head>
<body>
<div class="portfolio">
<header>
<nav>
<h3 class="logo">Cristi Toma</h3>
<img src="./img/hamburger.svg" alt="burger">
</nav>
<main>
<section class="page photographer">
<div class="details">
<h1>Cristi Toma</h1>
<h2>Photographer</h2>
<p>10/10/2010</p>
</div>
<div class="hero">
<img class="model-left" src="./img/model-left.jpg" alt="model">
<img class="model-right" src="./img/model-right.jpg" alt="model">
</div>
</section>
<section class="page chef">
<div class="details">
<h1>Miruna F.</h1>
<h2>Chef</h2>
<p>1/12/2017</p>
</div>
<div class="hero">
<img class="model-left" src="./img/chef-left.jpg" alt="model">
<img class="model-right" src="./img/chef-right.jpg" alt="model">
</div>
</section>
<section class="page hairstyle">
<div class="details">
<h1>Diana G.</h1>
<h2>Hair stylist</h2>
<p>10/10/2010</p>
</div>
<div class="hero">
<img class="model-left" src="./img/hair-left.jpg" alt="model">
<img class="model-right" src="./img/hair-right.jpg" alt="model">
</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" fill-opacity="0.5"/>
</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" fill-opacity="0.5"/>
</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" fill-opacity="0.5"/>
</svg>
</div>
</div>
</main>
</header>
</div>
</body>
</html>