Formatted index

This commit is contained in:
techpriest 2024-02-08 21:58:57 -06:00
parent 1079450ec8
commit c6ba464fba

View file

@ -1,37 +1,21 @@
<!DOCTYPE html> <!-- indicates the language of the document --> <!DOCTYPE html>
<html lang="en"> <!-- indicates language of the page --> <html lang="en">
<head> <!-- head section contains metadata of the page --> <head>
<meta charset="utf-8"> <!-- indicates which character set the browser should render --> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <!-- scales the page to the size of the screen, important to make page look good on mobile --> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>Webpage Title Here</title> <!-- indicates the title of the page to the browser --> <title>LogGit</title>
</head> </head>
<body> <body>
<h1>Webpage Title Here</h1> <!-- this will be the first line printed on the page, and will be larger than anything else --> <h1>LogGit</h1>
<h2>Subtitle Here</h2> <!-- use this as a heading to designate a new section of content --> <h2>What Is LogGit:</h2>
<p>Paragraph Here</p> <!-- can have multiple paragraphs in a section, each use of these tags will give you a new paragraph, with a break in between them --> <p>Nothing new, it's just using Git and publically hosted repositories to distribute content in a way that is offline-first, p2p if you want, and doesn't rely on anything other than a personal computer if you want to go old school. Oh, and you don't have to build anything, it's good to go.</p>
<p>This whole project is just giving it a name and a logo so it's easier to talk about it.</p>
<h2>How To LogGit:</h2>
<p>Step 1. Host the repository to your website or whatever you want to share publicly on Github or something.</p>
<p>Step 2. If you can, place the logo and the url to clone that repository prominently on the site or whatever it is you're sharing.</p>
<p>Step 3. Tell your friends they can get your project via LogGit.</p>
<p>Step 4. Congratulate yourself on making the world a more offline-friendly place!</p>
<h2>Learn More:</h2>
<p>Check out the essay, which is mostly a bunch of links, because, none of this is new.</p>
</body> </body>
</html> </html>
What Is LogGit:
Nothing new, it's just using Git and publically hosted repositories to distribute content in a way that is offline-first, p2p if you want, and doesn't rely on anything other than a personal computer if you want to go old school. Oh, and you don't have to build anything, it's good to go.
This whole project is just giving it a name and a logo so it's easier to talk about it.
How To LogGit:
Step 1. Host the repository to your website or whatever you want to share publicly on Github or something.
Step 2. If you can, place the logo and the url to clone that repository prominently on the site or whatever it is you're sharing.
Step 3. Tell your friends they can get your project via LogGit.
Step 4. Congratulate yourself on making the world a more offline-friendly place!
Learn More:
Check out the essay, which is mostly a bunch of links, because, none of this is new.