diff

Created Diff never expires
278 removals
Words removed857
Total words971
Words removed (%)88.26
294 lines
177 additions
Words added284
Total words398
Words added (%)71.36
194 lines
<!DOCTYPE html>
<!DOCTYPE html>
<html>
<html>
<head>
<head>

<meta charset="UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Honest Self Hosting</title>
<title>Honest Self Hosting</title>
<!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look.
This makes it easier to make new pages for your site. -->
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
</head>
</head>
<body>
<body>
<div id="container">
<div id="container">
<div id="headerArea">
<div id="headerArea">
<div id="header"></div>
<div id="header"></div>
<nav id="navbar">
<nav id="navbar">
<ul>
<ul>
<li><a href="https://honestselfhosting.neocities.org/About">About</a></li>
<!--
<li><a href="https://honestselfhosting.neocities.org/Recent">Most Recent</a></li>
/* Adding "target="_blank" after the URL is what opens a link in a new tab. Delete it to open in same tab! */ -->
<li><a href="https://honestselfhosting.neocities.org/resources/">Resources</a></li>
<li><a href="https://linksta.cc/@bit_form" target="_blank">Link Stack</a></li>
<li><a href="https://honestselfhosting.neocities.org/About">About</a></li>
</ul>
<li><a href="https://honestselfhosting.neocities.org/Recent">Most Recent</a></li>
</nav>
<li><a href="https://honestselfhosting.neocities.org/resources/">Resources</a></li>
</div>
<li><a href="https://linksta.cc/@bit_form" target="_blank"> Link Stack</a>

<div id="flex">
<aside id="leftSidebar">
<h2>Updates</h2>
<div class="box">
<ul style="padding-left:10px;">
<p> Slowly learning HTML to have this up and functional!</p>
<li>First Post: <a href="https://owncast.online/" target="_blank">Owncast</a></li>
</ul>
</ul>
</nav>
</div>
</div>
</aside>

<main>
<div id="flex">
<h2>Resources</h2>
<aside id="leftSidebar">
<p>lurk.org great place for for pinpointing what you want to be hosting, with great people to help you through it with knowledge in all sorts of different kinds of hosting, and how to do it! You can find their motivation and mandate</p>
<h2>Updates</h2>
<li><a href="https://lurk.org/" target="_blank">Lurk.org!</a></li>
<div class="box">
<p>A list of documentation depending on your needs, and what you might be looking to try!</p>
<ul style="padding-left:10px;">
<li><a href="https://things.bleu255.com/runyourown/Main_Page" target="_blank">Run Your Own Wiki</a></li>
<p> Slowly learning HTML to have this up and funcitonal!
</main>
</p>
<li>First Post: <a href="https://owncast.online/" target="_blank">Owncast</a></li>
</ul>
</div>
</aside>
<main>
<h2> Resources </h2>
<p> lurk.org great place for for pinpointing what you want to be hosting, with great people to help you through it with knowledge in all sorts of different kinds of hosting, and how to do it! You can find their motivation and mandate
</p>
<li><a href="https://lurk.org/" target="_blank">Lurk.org!</a>
<P> A list of documentation depending on your needs, and what you might be looking to try!
</p>
</li><li><a href="https://things.bleu255.com/runyourown/Main_Page" target="blank">Run Your Own Wiki</a></li>
</main>
</div>
<footer id="footer">CC0 Public Domain, 2022 Thanks to sadgirl layout builder!</footer>
</div>
</div>
<!-- THIS IS THE CSS !-->
<footer id="footer">CC0 Public Domain, 2022 Thanks to sadgirl layout builder!</footer>
<style>
</div>
/* user styles */

/* styles are what change the color and sizes of stuff on your site. */

/* these are variables that are being used in the code
these tended to confuse some people, so I only kept
the images as variables */

:root {
--header-image: url('images/Glitch3.jpg');
--body-bg-image: url('images/glitch2.jpg');
/*make images big enough to cover whole screen

/* colors */
--content: #43256E;
}

/* if you have the URL of a font, you can set it below */
/* feel free to delete this if it's not your vibe */

/* this seems like a lot for just one font and I would have to agree
but I wanted to include an example of how to include a custom font.
If you download a font file you can upload it onto your Neocities
and then link it! Many fonts have separate files for each style
(bold, italic, etc. T_T) which is why there are so many!
*/

@font-face {
font-family:'BarlowCondensed';
src: url('https://file.garden/Ztc2mXae60zraAAp/BarlowCondensed/BarlowCondensed-Regular.ttf')format("truetype");
}
@font-face {
font-family: Nunito;
src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
font-weight: bold;
}

@font-face {
font-family: Nunito;
src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
font-style: italic;
}

@font-face {
font-family: Nunito;
src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
font-style: italic;
font-weight: bold;
}

body {

font-family: 'BarlowCondensed', sans-serif;
margin: 0;
background-color: #cacfd2 ;
/* you can delete the line below if you'd prefer to not use an image */
background-size: 1000px;
color: #cacfd2;
background-image: var(--body-bg-image);
}

* {
box-sizing: border-box;
}

/* below this line is CSS for the layout */

/* this is a CSS comment
to uncomment a line of CSS, remove the * and the /
before and after the text */


/* the "container" is what wraps your entire website */
/* if you want something (like the header) to be Wider than
the other elements, you will need to move that div outside
of the container */
#container {
max-width: 900px;
/* this is the width of your layout! */
/* if you change the above value, scroll to the bottom
and change the media query according to the comment! */
margin: 0 auto;
/* this centers the entire page */
}

/* the area below is for all links on your page
EXCEPT for the navigation */
#container a {
color: #74C151;
font-weight: bold;
/* if you want to remove the underline
you can add a line below here that says:
text-decoration:none; */
}

#header {
width: 100%;
background-color: #7c687d;
/* header color here! */
height: 200px;
/* this is only for a background image! */
/* if you want to put images IN the header,
you can add them directly to the <div id="header"></div> element! */
background-image: var(--header-image);
background-size: 100%;
}


/* navigation section!! */
<!-- THIS IS THE CSS !-->
#navbar {
<style>
height: 40px;
:root {
background-color: #302338;
--header-image: url('images/Glitch3.jpg');
/* navbar color */
--body-bg-image: url('images/glitch2.jpg');
width: 100%;
--content: #43256E;
}
}


#navbar ul {
@font-face {
display: flex;
font-family: 'BarlowCondensed';
padding: 0;
src: url('https://file.garden/Ztc2mXae60zraAAp/BarlowCondensed/BarlowCondensed-Regular.ttf') format("truetype");
margin: 0;
}
list-style-type: none;
@font-face {
justify-content: space-evenly;
font-family: Nunito;
}
src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
font-weight: bold;
}
@font-face {
font-family: Nunito;
src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
font-style: italic;
}
@font-face {
font-family: Nunito;
src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
font-style: italic;
font-weight: bold;
}


#navbar li {
body {
padding-top: 10px;
font-family: 'BarlowCondensed', sans-serif;
}
margin: 0;
background-color: #cacfd2;
background-size: 1000px;
color: #cacfd2;
background-image: var(--body-bg-image);
}


/* navigation links*/
* {
#navbar li a {
box-sizing: border-box;
color: #ED64F5;
}
/* navbar text color */
font-weight: 800;
text-decoration: none;
/* this removes the underline */
}


/* navigation link when a link is hovered over */
#container {
#navbar li a:hover {
max-width: 900px;
color: #a49cba;
margin: 0 auto;
text-decoration: underline;
}
}


#flex {
#container a {
display: flex;
color: #74C151;
}
font-weight: bold;
}


/* this colors BOTH sidebars
#header {
if you want to style them separately,
width: 100%;
create styles for #leftSidebar and #rightSidebar */
background-color: #7c687d;
aside {
height: 200px;
background-color: #302338;
background-image: var(--header-image);
width: 200px;
background-size: 100%;
padding: 15px;
}
font-size: smaller;
/* this makes the sidebar text slightly smaller */
}


#navbar {
height: 40px;
background-color: #302338;
width: 100%;
}


/* this is the color of the main content area,
#navbar ul {
between the sidebars! */
display: flex;
main {
padding: 0;
background-color: #1f232e;
margin: 0;
flex: 1;
list-style-type: none;
padding: 75px;
justify-content: space-evenly;
order: 2;
}
}


/* what's this "order" stuff about??
#navbar li {
allow me to explain!
padding-top: 10px;
if you're using both sidebars, the "order" value
}
tells the CSS the order in which to display them.
left sidebar is 1, content is 2, and right sidebar is 3! */


*/ #leftSidebar {
#navbar li a {
order: 1;
color: #ED64F5;
}
font-weight: 800;
text-decoration: none;
}


#rightSidebar {
#navbar li a:hover {
order: 3;
color: #a49cba;
}
text-decoration: underline;
}


footer {
#flex {
background-color: #13092D;
display: flex;
/* background color for footer */
}
width: 100%;
height: 40px;
padding: 10px;
text-align: center;
/* this centers the footer text */
}


h1,
aside {
h2,
background-color: #302338;
h3 {
width: 200px;
color: #74C151;
padding: 15px;
}
font-size: smaller;
}


h1 {
main {
font-size: 25px;
background-color: #1f232e;
}
flex: 1;
padding: 75px;
order: 2;
}


strong {
#leftSidebar {
/* this styles bold text */
order: 1;
color: #ED64F5;
}
}


/* this is just a cool box, it's the darker colored one */
#rightSidebar {
.box {
order: 3;
background-color: #443151;
}
border: 1px solid #74C151;
padding: 10px;
}


/* CSS for extras */
footer {
background-color: #13092D;
width: 100%;
height: 40px;
padding: 10px;
text-align: center;
}


#topBar {
h1, h2, h3 {
width: 100%;
color: #74C151;
height: 30px;
}
padding: 10px;
font-size: smaller;
background-color: #13092D;
}


h1 {
font-size: 25px;
}


strong {
color: #ED64F5;
}


</style>
.box {
background-color: #443151;
border: 1px solid #74C151;
padding: 10px;
}


#topBar {
</body>
width: 100%;
height: 30px;
padding: 10px;
font-size: smaller;
background-color: #13092D;
}
</style>
</body>
</html>
</html>