forked from iiitranchi/YourStory_Blog
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
107 lines (94 loc) · 3.69 KB
/
index.html
File metadata and controls
107 lines (94 loc) · 3.69 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
<!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">
<title>YourStory</title>
<!-- Custom Styling -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="portfolio">
<header>
<nav>
<h3 class="brand">YourStory Blog</h3>
<div class="menu">Menu</div>
</nav>
</header>
<main>
<!-- Photographer Page -->
<section class="page photographer">
<div class="details">
<h1>Yashowardhan</h1>
<h2>Photographer</h2>
<p>25/10/2018</p>
</div>
<div class="profile">
<a href="photographer.html">
<img class = "model-left" src="images/photo_left@2x.png" alt="">
<img class = "model-right" src="images/photo_right@2x.png" alt="">
</a>
</div>
</section>
<!-- Pro Chef Page -->
<section class="page chef">
<div class="details">
<h1>Ranveer<br> Brar</h1>
<h2>Pro Chef</h2>
<p>15/06/2012</p>
</div>
<div class="profile">
<a href="chef.html">
<img class = "model-left" src="images/cook_left@2x.png" alt="">
<img class = "model-right" src="images/cook_right@2x.png" alt="">
</a>
</div>
</section>
<!-- Artist Page -->
<section class="page artist">
<div class="details">
<h1>Elena Roy</h1>
<h2>Artist</h2>
<p>08/02/2015</p>
</div>
<div class="profile">
<a href="artist.html">
<img class = "model-left" src="images/artist_left@2x.png" alt="">
<img class = "model-right" src="images/artist_right@2x.png" alt="">
</a>
</div>
</section>
<div class="pages">
<div class="page1 activePage">
<h3>01</h3>
<svg
class="slide active"
xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30">
<g id="dotActive" fill="#fff" stroke="#707070" stroke-width="1">
<circle cx="15" cy="15" r="15" stroke="none" />
</g>
</svg>
</div>
<div class="page2">
<h3>02</h3>
<svg class="slide" xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30">
<g id="dotActive" fill="#fff" stroke="#707070" stroke-width="1">
<circle cx="15" cy="15" r="15" stroke="none" />
</g>
</svg>
</div>
<div class="page3">
<h3>03</h3>
<svg class="slide" xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 30 30">
<g id="dotActive" fill="#fff" stroke="#707070" stroke-width="1">
<circle cx="15" cy="15" r="15" stroke="none" />
</g>
</svg>
</div>
</div>
</main>
</div>
<script src="js/app.js"></script>
</body>
</html>