-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtask3.html
executable file
·49 lines (43 loc) · 2.05 KB
/
task3.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task 3</title>
</head>
<body>
<strike>
<article>
<h1>Semantically correct HTML</h1>
<h2>Introduction</h2>
<p>
During this lecture we've been exploring and learning about writing <strong>semantically correct HTML</strong>.
One could immediately argue that you don't actually have to write semantically correct html, so let's discuss why that is.
</p>
<h2>HTML = Freedom</h2>
<p>
HTML is a very simple language to learn since it doesn't have a lot of strict rules. For example, this article is written inside a <code><article></code> tag, but I've commented out the closing tag. This is fully possible in HTML, and will <em>most likely</em> render correctly on the client.
</p>
</strike>
<article>
<h1>Task 3</h1>
<p>I started out by writing a discussion about <em>semantically correct HTML</em>, but after some time I realized that it doesn't really matter... By now I hope you have realized that I'm not new to <strong>html</strong> and <strong>css</strong>, I'm here to learn <strong>Javascript</strong>, so thats what I'll do from now on. Of course I'll do the tasks and labs required, but thats about it.</p>
<p>
<em>PS. I think the <code><mark></code> tag produces absolutely horrendous output. I'm not entirely sure if the tasks/assignment requires all of the listed tags specifically, but here we go: <mark>ughhthhhg</mark></em>
</p>
<h2>The List</h2>
<p>
Originally I forgot to showcase that I do in fact know how to make a list in html, but here you go:
<br>
<i>You may also have noticed that I usually don't like to write about myself or my hobbies in my assignments like the tasks specify, but here you go:</i>
</p>
<h3>Three things I like</h3>
<ol>
<li>Penguins</li>
<li>Tea</li>
<li>Containers (like docker containers, not IRL containers)</li>
</ol>
</article>
<!-- </article> Read the article if you wanna know why this is commented out -->
</body>
</html>