Skip to content

Commit 7787363

Browse files
authored
Update about.html
1 parent ddef153 commit 7787363

File tree

1 file changed

+18
-19
lines changed

1 file changed

+18
-19
lines changed

src/about.html

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,14 @@
33
<head>
44
<title>About | Coding Hut</title>
55
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<link href="https://fonts.googleapis.com/css?family=Comfortaa" rel="stylesheet">
67
<style>
78
body {
89
overflow-x: hidden;
9-
font-family: Sans-Serif;
10+
font-family: 'Comfortaa', Sans-Serif;
1011
margin: 0;
12+
font-size: 22px;
1113
}
12-
<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet'>
13-
<style>
14-
body {
15-
font-family: 'Comfortaa';font-size: 22px;
16-
}
1714

1815
.menu-container {
1916
position: relative;
@@ -52,7 +49,6 @@
5249

5350
.menu li {
5451
padding: 0 20px;
55-
font-size: 22px;
5652
}
5753

5854
/* Mobile Styles */
@@ -107,8 +103,8 @@
107103
<body>
108104
<nav class="menu-container">
109105
<!-- Logo -->
110-
<a href="https://scratch-coding-hut.github.io" class="menu-logo">
111-
<img src="Images/Coding-Hut-Logo.png" alt="Coding Hut Logo" width="50" height="50"></img>
106+
<a href="/" class="menu-logo">
107+
<img src="Images/Coding-Hut-Logo.png" alt="Coding Hut Logo" width="50" height="50">
112108
</a>
113109

114110
<!-- Menu for Mobile -->
@@ -117,30 +113,33 @@
117113
<!-- Menu Items -->
118114
<div class="menu">
119115
<ul>
120-
<li><a href="https://scratch-coding-hut.github.io">Home</a></li>
121-
<li><a href="https://scratch-coding-hut.github.io/about">About</a></li>
116+
<li><a href="/">Home</a></li>
117+
<li><a href="/about">About</a></li>
122118
<li><a href="https://scratch.mit.edu/discuss/topic/652178/">Scratch Forum</a></li>
123-
<li><a href="https://scratch-coding-hut.github.io/Wiki/sitemaplinks">Wiki | FAQ | More Links</a></li>
119+
<li><a href="/Wiki/sitemaplinks">Wiki | FAQ | More Links</a></li>
124120
</ul>
125121
<ul>
126-
<li><a href="https://scratch-coding-hut.github.io/messages">Messages</a></li>
127-
<li><a id="user" href="https://scratch-coding-hut.github.io/account">My Account</a></li>
122+
<li><a href="/messages">Messages</a></li>
123+
<li><a id="user" href="/account">My Account</a></li>
128124
</ul>
129125
</div>
130126
</nav>
131127

132128
<h1 style="text-align:center;"><b>About Coding Hut</b></h1>
133129
<h2 style="text-align:center;">Shop Created At Dec. 27, 2022 20:53:31</h2>
134-
Coding Hut is a shop that does coding, art, and many more! For more than 3 years, we have been helping Scratchers as well as New Scratchers with lots of Scratch-related things.
135-
<br>
136-
Coding Hut was founded by <a href='https://scratch.mit.edu/users/MyScratchedAccount'>@MyScratchedAccount</a> on Dec. 27, 2022 20:53:31.</h2>
130+
<p>
131+
Coding Hut is a shop that does coding, art, and many more! For more than 3 years, we have been helping Scratchers as well as New Scratchers with lots of Scratch-related things.
132+
</p>
133+
<p>
134+
Coding Hut was founded by <a href="https://scratch.mit.edu/users/MyScratchedAccount">@MyScratchedAccount</a> on Dec. 27, 2022 20:53:31.
135+
</p>
137136

138-
139137
<script>
140138
const username = localStorage.getItem('username');
141-
if (user) {
139+
if (username) {
142140
document.getElementById('user').textContent = username;
143141
}
142+
144143
function toggleMenu() {
145144
var menu = document.querySelector('.menu');
146145
menu.style.display = menu.style.display === 'flex' ? 'none' : 'flex';

0 commit comments

Comments
 (0)