-
Notifications
You must be signed in to change notification settings - Fork 0
/
social.html
36 lines (34 loc) · 1.33 KB
/
social.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
<!DOCTYPE html>
<html lang="en" id="main-content" style="background-image: url('images/voxelgrid.png');">
<head>
<script>
document.addEventListener('contextmenu',function(e){e.preventDefault();e.stopPropagation();});
document.addEventListener('copy',function(e){e.preventDefault();e.stopPropagation();});
document.addEventListener('cut',function(e){e.preventDefault();e.stopPropagation();});
</script>
<script src="script.js"></script>
<noscript>Your browser couldn't comprehend my power. No JavaScript!</noscript>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Mini's Page</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Salsa">
<style>
body {
font-family: "Salsa", sans-serif;
}
</style>
</head>
<body>
<div class="topnav">
<a href="index.html">Home</a>
<a href="calendar.html">Calendar</a>
<a href="social.html" class="active">Social</a>
<a href="about.html">About</a>
<p id="banner-event" class="eventText"></p>
<script src="event.js"></script>
<noscript>Your browser couldn't comprehend my power. No JavaScript!</noscript>
</div>
<img style="position: absolute; margin: auto ;top: 0 ;left: 0 ;right: 0 ;bottom: 0 ;height: 80vh;" src="images/null.png">
</body>
</html>