-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (62 loc) · 3.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Profile Page</title>
<script src="https://kit.fontawesome.com/fa55c7cfd0.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
</head>
<body>
<div class="container">
<div class="profile-card">
<div class="profile-header"><!-- profile header section -->
<div class="main-profile">
<div class="profile-image"></div>
<div class="profile-names">
<h1 class="username">Krishna Agrawal</h1>
<small class="page-title">Web enthusiast</small>
</div>
</div>
</div>
<div class="profile-body"><!-- profile body section -->
<div class="last-post">
<div class="post-cover">
<span class="last-badge"><i class="fa-solid fa-book-open"></i> About me</span>
<a href="message.html" class="message"><i class="fa-solid fa-address-card"></i></a>
<div class="bio-div">
<p class="bio-text">
Hola amigos, I am Krishna Agrawal, an Undergrad student at IIT Kanpur. I am from Odisha I spend most of my leisure time reading manga/manhwa and love to practice my chess skills.
</p>
</div>
</div>
</div>
<div class="account-info">
<div class="data">
<h3 class = "int">Interests</h3>
<p>Web Development</p>
<p>Machine Learning</p>
<p>Cyber Security</p>
</div>
<div class="other-data">
<h3>Involvements</h3>
<p>Web Secy @ ANC</p>
<p>Events Secy E-cell</p>
<p>secy @ Anisoc</p>
</div>
</div>
<div class="social-media">
<span>Follow me in:</span>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" class="media-link"><i class="fab fa-facebook-square"></i></a>
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" class="media-link"><i class="fab fa-twitter-square"></i></a>
<a href="https://www.linkedin.com/in/krishna-agrawal-960988287/" class="media-link"><i class="fab fa-linkedin"></i></a>
<a href="https://www.instagram.com/krishnaagrawal5002/" class="media-link"><i class="fab fa-instagram-square"></i></a>
<a href="https://github.com/Krishnaag23" class="media-link"><i class="fab fa-github-square"></i></a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>