Initial commit

This commit is contained in:
Tech Priest 2023-12-08 23:30:26 +00:00
commit 1a567017e3
3 changed files with 27 additions and 0 deletions

9
LICENSE Normal file
View file

@ -0,0 +1,9 @@
MIT License
Copyright (c) 2023 terrantechpriest
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# basic_webpage_template
A basic HTML only webpage template.
MIT License, anyone can use it. Go nuts.

View file

@ -0,0 +1,13 @@
<!DOCTYPE html> <!-- indicates the language of the document -->
<html lang="en"> <!-- indicates language of the page -->
<head> <!-- head section contains metadata of the page -->
<meta charset="utf-8"> <!-- indicates which character set the browser should render -->
<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 -->
<title>Webpage Title Here</title> <!-- indicates the title of the page to the browser -->
</head>
<body>
<h1>Webpage Title Here</h1> <!-- this will be the first line printed on the page, and will be larger than anything else -->
<h2>Subtitle Here</h2> <!-- use this as a heading to designate a new section of content -->
<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 -->
</body>
</html>