-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathindex.htm
74 lines (71 loc) · 3.36 KB
/
index.htm
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Home -- Welcome to the internet</title>
<link rel="shortcut icon" type="image/png" href="icons/favicon.png"/>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="js/jquery-2.1.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.button').click(function(e) {
e.preventDefault();
setContent($(this));
});
$('.button.active').length && setContent($('.button.active'));
function setContent($el) {
$('.button').removeClass('active');
$('.box').hide();
$el.addClass('active');
$($el.data('rel')).show();
}
});
</script>
</head>
<body>
<div id="container">
<div class="sidebar">
<div class="border"></div>
<button id="first-btn" class="button active" data-rel="#box1">01</button>
<div class="box" id="box1">
<h1>Fun things are fun!</h1>
<a href="http://txtchan.org">Textchan</a>
<a href="https://news.ycombinator.com/">Hacker News</a>
<a href="https://discordapp.com/login">>discord</a>
<a href="https://videolink2.me/#a42e1721">Videolink</a>
<a href="https://www.messenger.com">Messenger</a>
</div>
<button id="second-btn" class="button" data-rel="#box2">02</button>
<div class="box" id="box2">
<h1>All work and no play…</h1>
<a href="https://stackoverflow.com/">Stack Overflow</a>
<a href="https://golang.org/doc/">Golang Docs</a>
<a href="https://docs.oracle.com/javase/8/docs/api/">Java 8 Api</a >
</div>
<button id="third-btn" class="button" data-rel="#box3">03</button>
<div class="box" id="box3">
<h1>(´・ω・`)</h1>
<a href="http://danbooru.donmai.us/">Danbooru</a>
<a href="https://gelbooru.com/">Gelbooru</a>
<a href="http://www.pixiv.net/">Pixiv</a>
<a href="http://oyp.yunyah.com/">OYP</a>
<a href="http://waifu2x.udp.jp/">Waifu2x</a>
</div>
</div>
<div class="form">
<form method="get" action="http://www.google.com/search">
<input id="searchbox" name="q" type="text" autocomplete="off" class="cleardefault" maxlength="100" placeholder="search engine ..." size="17" autofocus />
<input type="submit" id="image-button" value=""></input>
</form>
</div>
<div class="details">
<div id="weather">
<h2 id="description"></h2>
<h3 id="temp_curr"></h3>
</div>
</div>
</div>
</body>
<script type="text/javascript" src="js/search.js"></script>
<script src="js/weather.js"></script>
</html>