-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
50 lines (50 loc) · 2.4 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
<!DOCTYPE html>
<html>
<head>
<title>E.P. - Static Page Example</title>
<link rel="stylesheet" href="style/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='shortcut icon' type='image/x-icon' href='style/home.png'/>
</head>
<body>
<div class="mainbox">
<header>
<h1>My Homepage</h1>
</header>
<ul class="mainlist">
<ul class="category">
<h2>General</h2>
<a href="https://www.youtube.com/"><li>YouTube</li></a>
<a href="https://github.com"><li>Github</li></a>
<a href="https://about.gitlab.com/"><li>Gitlab</li></a>
</ul>
<ul class="category">
<h2>News</h2>
<a href="https://www.bbc.co.uk/"><li>BBC</li></a>
<a href="https://www.theonion.com/"><li>The Onion</li></a>
<a href="https://www.reddit.com/"><li>Reddit</li></a>
</ul>
<ul class="category">
<h2>Studies</h2>
<a href="https://www.w3schools.com/"><li>W3Schools</li></a>
<a href="https://www.socrative.com/"><li>Socrative</li></a>
<a href="https://piazza.com/"><li>Piazza</li></a>
<a href="https://stackoverflow.com/"><li>Stack Overflow</li></a>
</ul>
<ul class="category">
<h2>Mail</h2>
<a href="https://www.google.com/gmail/"><li>Gmail</li></a>
<a href="https://outlook.live.com/"><li>Outlook</li></a>
</ul>
<ul class="category">
<h2>Social</h2>
<a href="https://web.telegram.org/#/login"><li>Telegram</li></a>
<a href="https://discordapp.com/"><li>Discord</li></a>
<a href="https://www.linkedin.com/"><li>LinkedIn</li></a>
<a href="https://www.facebook.com/"><li>Facebook</li></a>
</ul>
</ul>
<footer>Made by <a href="https://github.com/elenapan/" target="_blank">me</a></footer>
</div>
</body>
</html>