Skip to content

Commit

Permalink
Setup 1.html, Soon to be about.html
Browse files Browse the repository at this point in the history
  • Loading branch information
tay committed Sep 17, 2024
1 parent 18c8667 commit 27dabbf
Show file tree
Hide file tree
Showing 9 changed files with 91 additions and 6 deletions.
44 changes: 44 additions & 0 deletions 1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>

<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tee's website</title>

<!-- CSS -->
<link rel="stylesheet" href="assets/css/about.css">

<!-- Favicon -->
<link rel="shortcut icon" href="assets/imgs/favicon.png">

<body>

<video autoplay loop id="myVideo">
<source src="https://index.havenmc.org/website/assets/mp4/usurper.mp4" type="video/mp4">
This browser does not support HTML5 video or the server is offline.
</video>

<div class="content"> <button id="myBtn" onclick="myFunction()">Pause</button>
</div>

<script>
var video = document.getElementById("myVideo");
var btn = document.getElementById("myBtn");

function myFunction() {
if (video.paused) {
video.play();
btn.innerHTML = "Pause";
} else {
video.pause();
btn.innerHTML = "Play";
}
}
</script>

</body>
</html>
2 changes: 1 addition & 1 deletion about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tay.is-a.dev</title>
<title>tee's website</title>

<!-- CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
Expand Down
41 changes: 41 additions & 0 deletions assets/css/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: Arial;
font-size: 17px;
}

#myVideo {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
}

.content {
position: fixed;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
color: #f1f1f1;
width: 100%;
padding: 20px;
}

#myBtn {
width: 200px;
font-size: 18px;
padding: 10px;
border: none;
background: #000;
color: #fff;
cursor: pointer;
}

#myBtn:hover {
background: #ddd;
color: black;
}
2 changes: 1 addition & 1 deletion discord.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<title>tay.is-a.dev</title>
<title>tee's website</title>
<meta charset="UTF-8" />
<meta http-equiv="refresh" content="4; URL=https://discord.gg/xMdsWvqp7P" />
<!-- Set to 4 so that visitors can see the timer when it hits 0 -->
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tay.is-a.dev</title>
<title>tee's website</title>

<!-- CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
Expand Down
2 changes: 1 addition & 1 deletion pages.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tay.is-a.dev</title>
<title>tee's website</title>

<!-- CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
Expand Down
2 changes: 1 addition & 1 deletion projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tay.is-a.dev</title>
<title>tee's website</title>

<!-- CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
Expand Down
2 changes: 1 addition & 1 deletion radio.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>tay.is-a.dev</title>
<title>tee's website</title>

<!-- CSS -->
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
Expand Down
Binary file added usurper.mp4
Binary file not shown.

0 comments on commit 27dabbf

Please sign in to comment.