-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (120 loc) · 4.11 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
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Internet Page</title>
<!-- Import the webpage's stylesheet -->
<link rel="stylesheet" href="/style.css" />
<!-- Import the webpage's javascript file -->
<script src="/script.js" defer></script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"
></script>
<meta name="cf-2fa-verify" content="f2IeF0SQ4E9bvgkQLKDk" />
</head>
<body class="bg-light">
<nav class="navbar navbar-expand sticky-top navbar-dark bg-success">
<div class="container-fluid">
<ul class="navbar-nav me-auto h5 px-3">
<li class="nav-item">
<a class="nav-link active" href="/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/web.html">Web</a>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="/">Blog</a>
</li>
</ul>
<a class="navbar-brand">ALEXBROWN.ORG</a>
</div>
</nav>
<div class="container-fluid">
<p class="display-6 text-center mt-4">
<u> Long-Term Projects </u>
</p>
<p class="h4 text-center">
<a href="https://badjokes.zone" class="text-success">BadJokes.zone</a>
</p>
<p class="text-center">
BadJokes.zone is my user collected joke database. This was my first
project.<br />
This site will be <strong>moving</strong> in <em>February 2022</em>. A
new address will be announced soon.
</p>
<div
class="embed-responsive embed-responsive-16by9 col-xs-12 text-center"
>
<iframe
src="https://badjokes.zone/"
width="70%"
height="400"
style="border:none; "
class="embed-responsive-item"
id="iframeId"
></iframe
><script type="text/javascript">
myVid = document.getElementById("iframeId");
myVid.muted = true;
</script>
</div>
<hr
width="90%"
style="margin-left: auto; margin-right: auto; border-top: 3px solid #000000; border-radius: 5px;"
/>
<p class="h4 text-center">
<a href="https://alexbrown.org/2048" class="text-success">2048 Chess</a>
</p>
<p class="text-center">
Forked from henry7720 on
<a
href="https://github.com/henry7720/2048-Cupcakes"
class="text-success"
>Github</a
>. Thanks!
</p>
<div
class="embed-responsive embed-responsive-16by9 col-xs-12 text-center"
>
<iframe
src="https://alexbrown.org/2048"
style="border:none;"
height="400px"
width="70%"
id="iframeId"
></iframe
><script type="text/javascript">
myVid = document.getElementById("iframeId");
myVid.muted = true;
</script>
</div>
<br /><br /><br />
<!-- <div class="alert alert-info alert-dismissable fade show">
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
<strong>ATTN:</strong> <a class="alert-link" href="https://badjokes.zone">BadJokes.zone</a> will sunset in <em>February 2022</em>. A replacement site will follow.
</div> -->
</div>
<footer class="footer bg-success">
<div class="container">
<p class="text-light text-center">Copyright © 2020 by Alex Brown.</p>
</div>
</footer>
<!--<div class="container py-5 m-5 border border-dark border-2 bg-secondary text-light text-center">
<h1 class="display-1">
Hey there!
</h1>
<p class="display-6">
What's up?
</p>
</div> -->
</body>
</html>