Last active
September 11, 2023 00:41
-
-
Save Cac0demon/04b7545ef4d640bd9d3a1029288b99bb to your computer and use it in GitHub Desktop.
yLGMGNO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Watch The Bobby John Magic Show</title> | |
<meta name="author" content="Lem O Nade"> | |
<meta name="description" content="The official home for all Bobby John Magic Show content!"> | |
<meta name="keywords" content="Streaming Service", "BJMS", "Bobby John Magic Show"> | |
<meta name="generator" content="codepen.io"> | |
<link rel="stylesheet" href="style.css"> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<img src="https://i.pinimg.com/736x/f5/c4/e5/f5c4e5ef882dbd92b8126803878a9b5b.jpg" id="pic1"> | |
<h1>Watch the Bobby John Magic Show</h1> | |
<hr> | |
<h2>Season 1</h2> | |
<a href=https://drive.google.com/file/d/1gxfCML489PX0T81akt579qXJLUjGzTGd/view>Season 1 Episode 1</a> | |
<a href=https://drive.google.com/file/d/1024oOEDG3TI_1pZ9Gn0ui10OFzjOmT2Q/view>Season 1 Episode 2</a> | |
<hr> | |
<h2>More episodes coming soon.<h2> | |
<hr> | |
<p>Get In Touch</p> | |
<ol> | |
<li>Email: [email protected]</li> | |
</ol> | |
<hr> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fun() { | |
document.body.classList.toggle("darkMode"); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
h1 { | |
font-size: 55px; | |
text-align: center; | |
color: orange; | |
} | |
h2 { | |
font-size: 40px; | |
color: orange; | |
} | |
p { | |
font-size: 33px; | |
color: lightblue; | |
} | |
#name1 { | |
color: blue; | |
font-family: arial; | |
} | |
#name2 { | |
color: green; | |
font-family: helvetica; | |
} | |
#name3 { | |
color: red; | |
font-family: sans-serif; | |
} | |
#name4 { | |
color: aqua; | |
font-family: comic-sans; | |
} | |
ul { | |
font-size: 35px; | |
color: blue; | |
} | |
ol { | |
font-size: 35px; | |
color: white; | |
} | |
hr { | |
height: 5px; | |
background-color: red; | |
} | |
#ws { | |
font-size: 55px; | |
text-align: center; | |
} | |
.darkMode { | |
color: #00ff33; | |
background: black; | |
} | |
#btn { | |
padding: 0; | |
background: none; | |
border: none; | |
} | |
#bti { | |
width: 70px; | |
height: 70px; | |
} | |
body { | |
background-color: darkred; | |
} | |
html { | |
cursor: crosshair; | |
} | |
#pic1 { | |
display: none; | |
} | |
a { | |
font-size: 40px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment