-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (54 loc) · 1.37 KB
/
index.html
File metadata and controls
56 lines (54 loc) · 1.37 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<!--
Intro to HTML and CSS
Author: Seadrah Berger
Date: 7/1/2024
File: class_d4_semantics
-->
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Intro to HTML</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<header>
<h1>Introduction to HTML</h1>
<img
src="pretty_mountains_d3.jpg"
alt="Aerial image of Tianzi
mountains in China"
height="400"
/>
</header>
<main>
<section>
<h2>What is HTML and its role?</h2>
<p>
HTML is a markup language that serves as the structure of a webpage.
</p>
</section>
<section>
<h2>Why use Semantic HTML Elements vs Divs?</h2>
<p>
Semantic HTML elements make the markup more readable, accessible,
and<br />
specific. It makes it easier to work with.
</p>
</section>
<section>
<h2>Why learn HTML?</h2>
<p>
There are many reasons to learn HTML, including opening up job
prospects,<br />
for fun, or simply to keep up with technology and better understand
the digital<br />
world.
</p>
</section>
</main>
<footer>
<p><em>Seadrah Berger, July 11th 2024.</em></p>
</footer>
</body>
</html>