-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_HTML_Template.html
More file actions
24 lines (21 loc) · 1.2 KB
/
Copy pathBasic_HTML_Template.html
File metadata and controls
24 lines (21 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<title>Basic HTML</title>
<meta charset="utf-8">
</head>
<body>
<header>
<h1>The Basic HTML Template</h1>
<p>Introduction to basic HTML syntax.</p>
<a href="https://www.google.com/imgres?imgurl=https%3A%2F%2Fstuyhsdesign.files.wordpress.com%2F2015%2F09%2Fbasic-structure.png&imgrefurl=https%3A%2F%2Fstuyhsdesign.wordpress.com%2Fbasic-html%2Fstructure-html-document%2F&docid=oEqAaru_9SlvtM&tbnid=gBgYUMU96yi3XM%3A&vet=10ahUKEwj52P2o3cvlAhVBPawKHV4SAcUQMwhxKAAwAA..i&w=442&h=264&bih=657&biw=1366&q=html%20structure&ved=0ahUKEwj52P2o3cvlAhVBPawKHV4SAcUQMwhxKAAwAA&iact=mrc&uact=8">HTML Structure</a>
<main>
<h3>This is considered the "main" section. Only one per page, it is where the primary information is held.</h3>
<img src="C:\Users\Student\Downloads\Train_1.jpeg">
<p>On a blog post, the "main" element would be where the article is placed.</p>
<p>Heading sizes vary depending on what number you associate with it. The Larger the number, the smaller the text.</p>
<a href="C:\Users\Student\Documents\HTML_Documents\dog.html">Look at my favorite dog!</a>
</header>
<footer>Created by MO</footer>
</body>
</html>