-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (40 loc) · 1.36 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
<!DOCTYPE html>
<!--
Hi everyone, following code is preset template,
where you can fill your details and your new webpage is ready to be published.
Details required are following:
$full_name: Student's Full Name. For eg: Ayush Bansal.
$github_username: Student's Github Username. For eg: ayu023ban.
$profile_pic_url: Student's Profile Pic URl can be taken from any public website such as: Github, Facebook.
$studying_year:Student's Year in following format:
1st Year: Freshmen
2nd Year: Sophomore
Prefinal Year: Junior
Final Year: Senior
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hello World!</title>
</head>
<body>
<div id="container">
<div id="profile-picture">
<img src="https://avatars.githubusercontent.com/u/92792271?v=4" />
</div>
<div id="introduction">
<span>
<div id="hello">Hello, I am</div>
<div id="name">Manan Garg</div>
<div id="whoami">A Freshmen at IIT Roorkee</div>
</span>
<span>
<div id="github-handle">
<a href="https://github.com/Coder-Manan" target="__blank">@Coder-Manan</a>
</div>
</span>
</div>
</div>
</body>
</html>