Skip to content

Commit fc542c6

Browse files
committedJul 10, 2024
Initial commit
0 parents  commit fc542c6

File tree

5 files changed

+66
-0
lines changed

5 files changed

+66
-0
lines changed
 

‎bof/eventList.html

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Events</title>
7+
<!-- The style.css file allows you to change the look of your web pages.
8+
If you include the next line in all your web pages, they will all share the same look.
9+
This makes it easier to make new pages for your site. -->
10+
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
11+
<body>test</body>

‎index.html

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>The web site of eristocrates</title>
7+
<!-- The style.css file allows you to change the look of your web pages.
8+
If you include the next line in all your web pages, they will all share the same look.
9+
This makes it easier to make new pages for your site. -->
10+
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
11+
</head>
12+
<body>
13+
<h1>Welcome to my Website!</h1>
14+
15+
<p>There's a couple of ideas I always thought about, and eventually I figured it wouldn't hurt to try executing them on something simple and low commitment like <a href="https://neocities.org">Neocities</a>.</p>
16+
17+
<p> The first project I wanted to tackle was creating a less cumbersome version of the BOF website <b>specifically for during impression period</b>. The best way I've been able to think of is to scrape links, and add those links to a download manager of your choice (I'm a fan of jdownloader). Afterwards, packages become available and it's simple enough to download a complete zip, but during the event it can be a real pain trying to keep up with everything with the way the manbow website is designed.</p>
18+
19+
<p> Not that I expect this site of mine to be the pinnacle of web design, but manbow's site can be pretty tough to deal with for anyone not used to japanese web design</p>
20+
21+
<p>I'll even consider mirroring somethings from their site, as well as automating periodic scraping so this site can stay up do date during events. I'm the type to put function over aesthetics, so plz bear with me while I figure out how to get it all working. </p>
22+
23+
<p>Anywho, here's the <a href="/bof/eventList.html">bof link list</a></p>
24+
25+
<ul>
26+
<li>First thing</li>
27+
<li>Second thing</li>
28+
<li>Third thing</li>
29+
</ul>
30+
31+
<p>To learn more HTML/CSS, check out these <a href="https://neocities.org/tutorials">tutorials</a>!</p>
32+
</body>
33+
</html>

‎neocities.png

12.9 KB
Loading

‎not_found.html

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Not Found</title>
7+
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
8+
</head>
9+
<body>
10+
<h1>Page Not Found</h1>
11+
<p>The requested page was not found.</p>
12+
</body>
13+
</html>

‎style.css

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
2+
HTML content. To learn how to do something, just try searching Google for questions like
3+
"how to change link color." */
4+
5+
body {
6+
background-color: white;
7+
color: black;
8+
font-family: Verdana;
9+
}

0 commit comments

Comments
 (0)
Please sign in to comment.