Who am I?
Who are you?
Socio-political
My website vitling.xyz
Way beyond the scope of this course or even my ability, but inspiration and vibes Windows93.net
From the extension tab in VSCodium
<!DOCTYPE html>
<html>
<body>
<h1>The most simple website</h1>
<p>Here is everything I have to say</p>
</body>
</html>Edit some text
Make the title about you
Give yourself a mini-bio
What is a tag
<h1>Title</h1>
<h2>Subtitle</h2>
<h3>Subsubtitle</h3>
<h4>etc.</h4>
<h5>etc.</h5>
<h6>etc.</h6>Add some h2 subheadings
<p>blah blah blah</p>
A new line in the HTML does not create a new line in the page
<br>
<img>https://placecats.com/300/200
<img src="https://placecats.com/300/200">src="https://placecats.com/300/200" is an ATTRIBUTE
Let’s go get another image and put it on there
<a>...</a>https://90milartschool.softr.app/
<a href="https://90milartschool.softr.app/">90 mil art school</a>https://www.vitling.xyz if you don’t have an obvious
choicetarget="_blank"
Turn an image into a link
<ul>
<li>an item</li>
<li>another item</li>
</ul><ol>
<li>first item</li>
<li>second item</li>
</ol>
Break Time ?
(to transfer our website to the web host’s computer)
Have a browse through the MDN HTML Reference, find some interesting tags. Try them out and report back to us what you find.
<head> section<html>
<head>
<title>The best website ever</title>
</head>
<body>
...