-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (39 loc) · 2.01 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<title>BONFIRE LIT</title>
<link rel="stylesheet" href="style.css">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<link href='https://fonts.googleapis.com/css?family=Questrial' rel='stylesheet' type='text/css'> <!-- Downloads the desired font -->
</head>
<body>
<ul class="container">
<!-- Start Dropdown -->
<li><a class="parent" href="#">Me</a> <!-- Section title -->
<ul class="submenu"> <!-- Links Start -->
<li><a class="tab" href="https://thouther.com/blog">Blog</a></li>
<!-- <li><a class="tab" href="https://github.com/thouther">Github</a></li> -->
<li><a class="tab" href="https://steamcommunity.com/id/thoutherkai">Steam</a></li>
</ul> <!-- Links End -->
</li>
<!-- End Dropdown Section -->
<li><a class="parent" href="#">Linux</a>
<ul class="submenu">
<li><a class="tab" href="https://wiki.archlinux.org/">Arch Wiki</a></li>
<li><a class="tab" href="https://wiki.gentoo.org/wiki/Main_Page">Gentoo Wiki</a></li>
<li><a class="tab" href="https://wiki.archlinux.org/index.php/Comparison_of_tiling_window_managers">Tiling WM</a></li>
<li><a class="tab" href="https://github.com/mhinz/vim-galore">Vim-Galore</a></li>
<li><a class="tab" href="https://github.com/jlevy/the-art-of-command-line">Art of Command Line</a></li>
<li><a class="tab" href="https://github.com/brookhong/Surfingkeys">SurfingKeys</a></li>
</ul> <!-- Links End -->
</li>
<script>
$('.submenu').hide();
$("li:has(ul)").click(function(){
$("ul",this).slideToggle('200');
});
</script>
</body>
</html>