Filled out template, added banner, added documentation

This commit is contained in:
techpriestbaunach 2023-12-08 23:36:54 -06:00
parent b73f961ef6
commit 808eb5ead7
2 changed files with 11 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 806 KiB

View file

@ -3,12 +3,18 @@
<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 -->
<title>Saint Maker</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 -->
<p>Paragraph Here</p>
<h1 style="text-align: center">Saint Maker</h1> <!-- webpage title -->
<h2 style="text-align: center"><em>Connecting All Things in Christ</em></h2> <!-- tagline -->
<p style="text-align: center"><strong>Using present and future technological means to create a framework for Catholic life that promotes sanctity</strong></p> <!-- executive summary -->
<p style="text-align: center"><img src="SaintMakerLogo_BannerFinal_big.png" alt="Saint Maker Banner" style="max-width:100%;"></p> <!-- banner image -->
<h2 style="text-align: center">Learn More</h2> <!-- links to information about the Saint Maker -->
<p style="text-align: center">Paragraph Here</p>
<h2 style="text-align: center">Help Build</h2> <!-- links to community efforts -->
<p style="text-align: center">Paragraph Here</p>
<h2 style="text-align: center">Saint Maker Whitepaper</h2> <!-- the whitepaper -->
<p style="text-align: center">Paragraph Here</p>
</body>
</html>