-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.76 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
<!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: Patel Drumil Nileshbhai.
$github_username: Pragya-p-git.
$profile_pic_url: https://www.google.com/imgres?imgurl=https%3A%2F%2Fcdn.pixabay.com%2Fphoto%2F2015%2F04%2F23%2F22%2F00%2Ftree-736885__340.jpg&imgrefurl=https%3A%2F%2Fpixabay.com%2Fimages%2Fsearch%2Fnature%2F&tbnid=kHpcTNTA2NHBJM&vet=12ahUKEwi-4e6yorXvAhUPTCsKHQY8DvQQMygBegUIARDWAQ..i&docid=Ba_eiczVaD9-zM&w=546&h=340&q=images&ved=2ahUKEwi-4e6yorXvAhUPTCsKHQY8DvQQMygBegUIARDWAQ.
$branch: Mechanical Engineering
$studying_year: 1'st year Freshermen:
1st Year: Freshmen
2nd Year: Sophomore
Prefinal Year: Junior
Final Year: Senior
-->
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{$name}</title>
</head>
<body>
<div class="main-content">
<img class="profile-pic" src="{$profile_pic}" alt="profile-pic">
<div class="content">
<h2 class="color"> Hello, World. </h2> <br>
I am <span class="color"><b>{$name}</b></span>. <br>
I am currently a {$studying_year} studying {$branch} at Indian Institute of Technology, Roorkee.
<p class="link"><a href="https://github.com/{$github_username}">@{$github_username}</a></p>
</div>
</div>
</body>
</html