-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
163 lines (143 loc) · 5.35 KB
/
index.html
File metadata and controls
163 lines (143 loc) · 5.35 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
155
156
157
158
159
160
161
162
163
<!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="assets/css/styles.css" />
<!-- =====BOX ICONS===== -->
<link href="https://cdn.jsdelivr.net/npm/boxicons@2.0.5/css/boxicons.min.css" rel="stylesheet" />
<title>Kiran | Portfolio</title>
</head>
<body>
<!--===== HEADER =====-->
<header class="l-header">
<nav class="nav bd-grid">
<div>
<a href="#" class="nav__logo" style="color: rgb(36, 85, 231)">kk.</a>
</div>
<div class="nav__menu" id="nav-menu">
<ul class="nav__list">
<li class="nav__item">
<a href="#home" class="nav__link active">Home</a>
</li>
<li class="nav__item">
<a href="#about" class="nav__link">About</a>
</li>
<li class="nav__item">
<a href="#skills" class="nav__link">Skills</a>
</li>
</ul>
</div>
<div class="nav__toggle" id="nav-toggle">
<i class="bx bx-menu"></i>
</div>
</nav>
</header>
<main class="l-main">
<!--===== HOME =====-->
<section class="home bd-grid" id="home">
<div class="home__data">
<h1 class="home__title" style="margin-bottom: 0">
Hi,<br />I'm <span class="home__title-color">Kiran</span><br />
</h1>
<p style="margin-bottom: 20px">Web Developer | Security Enthusiast</p>
<a href="#" class="button">Get in touch</a>
</div>
<div class="home__social">
<a href="" class="home__social-icon"><i class="bx bxl-linkedin"></i></a>
<a href="" class="home__social-icon"><i class="bx bxl-behance"></i></a>
<a href="" class="home__social-icon"><i class="bx bxl-github"></i></a>
</div>
<div class="home__img">
<img src="assets/img/perfil.png" alt="" />
</div>
</section>
<!--===== ABOUT =====-->
<section class="about section" id="about">
<h2 class="section-title">About</h2>
<div class="about__container bd-grid">
<div class="about__img">
<img src="assets/img/about.jpg" alt="" />
</div>
<div>
<h2 class="about__subtitle">I'm Kiran Kurian</h2>
<p class="about__text">
Simple human. CS graduate student at SJCET. Web Dev - Front End.
Thinking outside the box. Caffiene Addict.
</p>
</div>
</div>
</section>
<!--===== SKILLS =====-->
<section class="skills section" id="skills">
<h2 class="section-title">Skills</h2>
<div class="skills__container bd-grid">
<div>
<h2 class="skills__subtitle">Professional Skills</h2>
<p class="skills__text">
I've been exploring various realms of technology since my young
years, and these are some of the technical the skills I've acquired along the way.
</p>
<div class="skills__data">
<div class="skills__names">
<i class="bx bxl-html5 skills__icon"></i>
<span class="skills__name">HTML5</span>
</div>
<div class="skills__bar skills__html"></div>
<div>
<span class="skills__percentage">80%</span>
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class="bx bxl-css3 skills__icon"></i>
<span class="skills__name">CSS3</span>
</div>
<div class="skills__bar skills__css"></div>
<div>
<span class="skills__percentage">70%</span>
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class="bx bxl-javascript skills__icon"></i>
<span class="skills__name">JAVASCRIPT</span>
</div>
<div class="skills__bar skills__js"></div>
<div>
<span class="skills__percentage">50%</span>
</div>
</div>
<div class="skills__data">
<div class="skills__names">
<i class="bx bxl-bootstrap skills__icon"></i>
<span class="skills__name">BOOTSTRAP</span>
</div>
<div class="skills__bar skills__bs"></div>
<div>
<span class="skills__percentage">45%</span>
</div>
</div>
</div>
<div>
<img src="assets/img/work3.jpg" alt="" class="skills__img" />
</div>
</div>
</section>
</main>
<!--===== FOOTER =====-->
<footer class="footer">
<p class="footer__title" style="font-size: 1.3rem">Stay in the loop.</p>
<div class="footer__social">
<a href="#" class="footer__icon"><i class="bx bxl-facebook"></i></a>
<a href="#" class="footer__icon"><i class="bx bxl-instagram"></i></a>
<a href="#" class="footer__icon"><i class="bx bxl-twitter"></i></a>
</div>
<p style="color: rgb(168, 168, 168)">Feel free to use this template!</p>
</footer>
<!--===== SCROLL REVEAL =====-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--===== MAIN JS =====-->
<script src="assets/js/main.js"></script>
</body>
</html>