-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
28 lines (28 loc) · 1.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>sst3ly</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div type="headings">
<h1>Heading</h1>
</div>
<div type="navbar">
<p>||Home||</p><a href="https://sst3ly.github.io/forest-of-knowledge">Forest Of Knowledge|</a>
</div>
<div>
<p id="para">paragraphs</p>
<button onclick="go()">CLICK ME!</button>
</div>
<a href="javascript:(function () {var script=document.createElement('script');script.src='https://x-ray-goggles.mouse.org/webxray.js';script.className='webxray';script.setAttribute('data-lang','en-US');script.setAttribute('data-baseuri','https://x-ray-goggles.mouse.org');document.body.appendChild(script);}())">
cool link, allows editing</a>
<script src="script.js" type="text/javascript>
function go(){
document.getElementById("para").innerHtml = "hello"
}
</script>
</body>
</html>