added basic html outline
This commit is contained in:
parent
bc9af8c5b8
commit
3a31e9ba9f
1 changed files with 16 additions and 0 deletions
16
index.html
16
index.html
|
@ -1,3 +1,19 @@
|
||||||
|
<!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>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
This should give the basics, the how to, and have links to archives.
|
This should give the basics, the how to, and have links to archives.
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue