-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (112 loc) · 4.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Playground Website</title>
<link href="main.css" rel="stylesheet">
</head>
<body class="main">
<header>
<div id="brand">
<a href="https://github.com/bdls-jamal/bdls-jamal.github.io" target="_blank">
<img src="files for site/takashihypebeast.jpg" alt="Takashi Hype" class="pfp">
</a>
</div>
<nav>
<ul id="nav">
<li id="main_link">
<a href="index.html">Home</a>
</li>
<li>
<a href="youtube vids.html">Cool Youtube Videos</a>
</li>
<li>
<a href="baenyebe.html">baenyebe Recent Uploads</a>
</li>
<li>
<a href="misc.html">Misc Nonsense</a>
</li>
</ul>
</nav>
<div id="mobile-nav" onclick="toggleForMobile(this)">
<div class='item1'></div>
<div class="item2"></div>
<div class="item3"></div>
<ul class="for_mobile">
<li id="main_link">
<a href="index.html">Home</a>
</li>
<li>
<a href="youtube vids.html">Cool Youtube Videos</a>
</li>
<li>
<a href="baenyebe.html">baenyebe Recent Uploads</a>
</li>
<li>
<a href="misc.html">Misc Nonsense</a>
</li>
</ul>
</div>
<script src="javascript.js">
</script>
</header>
<!-- <div class="sticky">
<a href="#top_page" class="hyperlink">
<span>Scroll back to top.</span></a>
<div id='hyperlinks' style="text-align: center;">
<div id="link1">
<a href="#auto_youtube" style="color: white; margin-right: 10px;"><span>Go to baenyebe videos</span></a>
</div>
<div id="link2">
<a href="#wrapper" style="color: white;"><span>Go to youtube videos</span></a>
</div>
</div>
<div id='hyperlinks2' style="text-align: center;">
<div id="link3">
<a href="#DM" style="color: white; margin-right: 10px;"><span>Go to DM</span></a>
</div>
<div id="link4">
<a href="#neon" style="color: white;"><span>Go to Entertain Me</span></a>
</div>
</div>
</div> -->
<br id="top_page" />
<h1 class="header1" style='color:antiquewhite'>Hey this is my first website!</h1><b style="color: antiquewhite;">Does this work?</b>
<br /><p style='color:rgb(255, 255, 255)'>I think it does work.</p>
<br />
<!-- <style>
/* body {
background-image: url('files for site/mobile-background.jpg');
background-size: contain;
background-position: center;
} */
div.sticky {
position: -webkit-sticky;
position: sticky;
top:0;
}
</style> -->
</body>
</html>
<!-- JavaScript -->
<!-- <script type="text/javascript">
function addText() {
if (!document.getElementById) return;
var sentence=document.changeform.sentence.value;
var node=document.createTextNode(" " + sentence);
document.getElementById("paragraph1").appendChild(node);
document.changeform.sentence.value="";
}
</script> -->
<!-- <script>
function newLine() {
if (!document.getElementById) return;
var node1=document.createTextNode(<br />);
document.getElementById("paragraph1").appendChild(node1);
}
</script> -->
<script>
function toggleForMobile(menu) {
menu.classList.toggle('open')
}
</script>