-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (47 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<link media="all" rel="stylesheet" href="./css/common.css">
<link media="all" rel="stylesheet" href="./main.css">
<title>Home</title>
</head>
<body class="">
<div class="flex-x">
<div class="flex-y left-part">
<div class="flex-x profile-image-area">
<img src="./static/profile-image.jpg" />
</div>
<div class="flex-x name-area">
Kiran M N
</div>
<div class="flex-x social-area">
<a href="#"><img height="48px" width="48px" src="./static/linkedin-64.png" /></a>
<a href="#"><img height="48px" width="48px" src="./static/twitter-64.png" /></a>
<a href="#"><img height="48px" width="48px" src="./static/stackoverflow-64.png" /></a>
</div>
</div>
<div class="flex-y right-part">
<div class="flex-x link-area">
<div class="flex-x link-item"><a href="#">Resume´</a></div>
<div class="flex-x link-item"><a href="#">Blog</a></div>
<div class="flex-x link-item"><a href="#">Bookshelf</a></div>
</div>
<div class="flex-y description-area">
<p>Hi there! Welcome to my pages. I am your host, Kiran.</p>
<p>I design and develop software to make a living. Few adjectives that describe me:
<span style="color: rgba(40, 167, 69, 0.9); font-style: italic;">
geek, coder, designer, foodie, blogger; occasional hiker,
cyclist, trekker.
</span>
</p>
<p>
When I am not writing code, I probably am listening to some soul stirring numbers (Bollywood, primarily),
or listening to philosophical discourses or following political affairs or watching away YouTube videos to glory.
</p>
</div>
</div>
</div>
</body>
</html>