-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
197 lines (167 loc) · 8.51 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, intial-scale=1.0">
<title>Jinsel Portfolio Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css" integrity="sha256-46qynGAkLSFpVbEBog43gvNhfrOj+BmwXdxFgVK/Kvc=" crossorigin="anonymous"/>
<!-- google fonts links -->
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:400,900|Source+Sans+Pro:300,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="logo">
<img src="img/logo.png" alt="">
</div>
<button class="nav-toggle" arial-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="#home" class="nav__link">Home</a></li>
<li class="nav__item"><a href="#services" class="nav__link">Services</a></li>
<li class="nav__item"><a href="#about" class="nav__link">About Me</a></li>
<li class="nav__item"><a href="#work" class="nav__link">My Work</a></li>
</ul>
</nav>
</header>
<!-- Introduction -->
<section class="intro" id="home">
<h1 class="section__title section__title--intro">
Hi, I am <strong>Yeshi Dorjee</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">(VIDEO/GRAPHIC)EDITOR</p>
<img src="img/jinsel.png" alt="a picture of Yeshi Smiling" class="intro__img">
</section>
<!-- My Services -->
<section class="my-services" id="services">
<h2 class="section__title section__title--services">
What I do ?
</h2>
<div class="services">
<div class="service">
<div class="card">
<div class="card-image card-1">
</div>
<div class="card-text card-1">
<h2>Designing</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Esse laudantium harum magnam accusantium blanditiis, tenetur repudiandae consequatur quam itaque debitis!</p>
</div>
</div>
</div><!-- / service -->
<div class="service">
<div class="card">
<div class="card-image card-2">
</div>
<div class="card-text card-2">
<h2>Editing</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Esse laudantium harum magnam accusantium blanditiis, tenetur repudiandae consequatur quam itaque debitis!</p>
</div>
</div>
</div><!-- / service -->
<div class="service">
<div class="card">
<div class="card-image card-3">
</div>
<div class="card-text card-3">
<h2>Illustration</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Esse laudantium harum magnam accusantium blanditiis, tenetur repudiandae consequatur quam itaque debitis!</p>
</div>
</div>
</div><!-- / service -->
</div> <!-- / services -->
<a href="#work" class="btn">Read More</a>
</section>
<!-- About Me -->
<section class="about-me" id="about">
<h2 class="section__title section__title--about">Who I am</h2>
<p class="section__subtitle section__subtitle--about">Designer & Editor / Freelancer</p>
<div class="about-me__body">
<p>Hey Guys, I am Yeshi Dorjee or people called me <strong>"Jinsel"</strong> and I love making videos and designing. It's been a 2 years since I am editing the videos and designing. Since childhood I love to watch movies and shows, from that I got inspire to work on this field.</p>
<p>I love to learning new languages of diferent country and also their culture. I believe in <strong><i>"Explore and Learn"</i></strong>. Gardening is one of my hobbies. Swimming, Tracking, Writing thoughts and so many more. I always find a way to make intrest people and make them fun.</p>
</div>
<img src="img/jinsel-standing.jpg" alt="Jinsel in Classroom" class="about-me__img">
</section>
<!-- My Work -->
<section class="my-work" id="work">
<h2 class="section__title section__title--work">My Work</h2>
<p class="section__subtitle section__subtitle--work">Photo and Graphic Designing</p>
<div class="portfolio">
<!-- portfolio item 01 -->
<a href="portfolio_item.html" class="portfolio__item">
<img src="img/my-work/1.jpg" alt="" class="portfolio__img">
</a>
<!-- portfolio item 02 -->
<a href="#" class="portfolio__item">
<img src="img/my-work/2.jpg" alt="" class="portfolio__img">
</a>
<!-- portfolio item 03 -->
<a href="#" class="portfolio__item">
<img src="img/my-work/3.jpg" alt="" class="portfolio__img">
</a>
<!-- portfolio item 04 -->
<a href="#" class="portfolio__item">
<img src="img/my-work/4.jpg" alt="" class="portfolio__img">
</a>
<!-- portfolio item 05 -->
<a href="#" class="portfolio__item">
<img src="img/my-work/5.jpg" alt="" class="portfolio__img">
</a>
<!-- portfolio item 06 -->
<a href="#" class="portfolio__item">
<img src="img/my-work/6.jpg" alt="" class="portfolio__img">
</a>
<!-- portfolio item 07 -->
<a href="#" class="portfolio__item">
<img src="img/my-work/7.jpg" alt="" class="portfolio__img">
</a>
<!-- portfolio item 08 -->
<a href="#" class="portfolio__item">
<img src="img/my-work/8.jpg" alt="" class="portfolio__img">
</a>
</div>
</section>
<section class="my-video" id="work">
<p class="section__subtitle section__subtitle--work">Graphic and Video Designer</p>
<div class="portfolio">
<!-- portfolio item 01 -->
<iframe class="portfolio__video" src="https://player.vimeo.com/video/444136963" width="400px" height="200px" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
<!-- portfolio item 02 -->
<iframe class="portfolio__video" src="https://player.vimeo.com/video/444137427" width="400px" height="200px" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
<!-- portfolio item 03 -->
<iframe class="portfolio__video" src="https://player.vimeo.com/video/445468341" width="400px" height="200px" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
<!-- portfolio item 04 -->
<iframe class="portfolio__video" src="https://player.vimeo.com/video/445469022" width="400px" height="200px" frameborder="0" allow="autoplay; fullscreen" allowfullscreen></iframe>
</div>
</section>
<footer class="footer">
<!-- replace with your own email address -->
<a href="mailto:[email protected]" class="footer__link">[email protected]</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="#">
<i class="fab fa-instagram"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="#">
<i class="fab fa-facebook-square"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://twitter.com">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://github.com">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</footer>
<script src="javascript/index.js"></script>
</body>
</html>