-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweb_template.html
60 lines (53 loc) · 1.41 KB
/
web_template.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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Webpage</title>
</head>
<body>
<h1>My Personal Page</h1>
<ul>
<li><a href="#background">Background</a></li>
<li><a href="#research">Research Interests</a></li>
<li><a href="#hobbies">Hobbies</a></li>
<li><a href="#favorite_food">Favorite Food</a></li>
</ul>
<h2 id="background">My Background</h2>
<p >
Hello guys, my name is _____. I am a student and studying _______. Insert other stuff about yourself here.
</p>
<h2 id="research">Research Interests</h2>
<p >
If you do have interests or anything you find interesting, insert stuff about that here.
</p>
<h2 id="hobbies">Hobbies</h2>
<p>
I like to do the following things:
<ul>
<li>
<i>Hobby1</i>
<p>Description about hobby 1 goes here</p>
</li>
<li>
<i>Hobby2</i>
<p>Description about hobby 2 goes here</p>
</li>
</ul>
</p>
<h2 id="favorite_food">Favorite Food</h2>
<p>
General description about food
<ul>
<li>
<i>Sandwich & Pizza</i>
<p>Sandwich & Pizza fodayzzzzzz.
</p>
</li>
<li>
<i>Food 2</i>
<p>Description about food 2 goes here....</p>
</li>
</ul>
</p>
</body>
</html>