-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
80 lines (71 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="shortcut icon" href="assets/media/logo.png" type="image/x-icon">
<title>Link Log | Rohan Kulkarni</title>
</head>
<body>
<header>
<nav>
<img src="assets/media/logo.png">
<ul>
<li><a href="about.html">About</a></li>
<li><a href="https://github.com/rohan-kulkarni-25/LinkLog">Create your Own</a></li>
</ul>
</nav>
</header>
<!-- Personal Profile -->
<section class="selfbox">
<div class="profilebox">
<div id="avatarbox">
<img src="assets/media/avatar.png" alt="">
<!-- Your Image -->
</div>
<div class="detailbox">
<p class="name">Rohan Kulkarni</p>
<!-- Your Name -->
<p class="bio">Hey, Rohan here !! Currently, pursuing CS Engineering from SITS, Pune. I have prior
knowledge of C++ & java. Inclined towards Development. Nowadays, I am learning web development &
also
interested in contributing to open source.
</p>
<!-- Your Bio -->
</div>
<div class="socialbox">
<!-- Your Socials -->
<a class="sociallogo" target="_blank" href="https://github.com/rohan-kulkarni-25"><img
src="assets/media/github.png" alt=""></a>
<a class="sociallogo" target="_blank" href="https://www.linkedin.com/in/rohan-k-2502/"><img
src="assets/media/linkedin.png" alt=""></a>
<a class="sociallogo" target="_blank" href="https://twitter.com/rohan_2502"><img
src="assets/media/twitter.png" alt=""></a>
<a class="sociallogo" target="_blank" href="https://www.instagram.com/rohan_k_2502/"><img
src="assets/media/instagram-2447888.png" alt=""></a>
</div>
</div>
</section>
<section class="links" id="links">
<!-- <div class="linkbox">
<div class="linklogo">
<img src="assets/media/link.png" alt="">
</div>
<div class="linkname" id="name">
Lorem ipsum dolor sit amet consectetur,
</div>
<div class="linkview">
<a href="" id="url"><button>View</button></a>
</div>
</div> -->
</section>
<!-- Please don't change this ! You can but its request ! -->
<footer class="foot">
<p>| Link Log | Rohan Kulkarni | June 2021 | © |</p>
</footer>
<script src="js/script.js"></script>
<script src="json/links.json"></script>
</body>
</html>