R1D9

Learnings
Did some touch typing lessons. This helps when inputting large amounts of code
source below
There can only be one body element in a document
<body></body>
Span element can be used to style parts of a string that differs from the rest of the string
<p><span>This text</span> can be styled differently from the rest of the sentence</p>
Head attribute only contains metadata meaning this information isn’t shown on the document
<head>
<link rel="stylesheet" href="styles.css">
Target attribute determines how a hyperlink will be opened
<a href="url" target="_blank" output: opens in new window
_parent output: opens in the parent frameset (not sure what that means)
_self output:opens in same window (default)
_top output: opens document in same window (this is not fully flushed
How to link to another part of the HTML document?
<p id="link__here">You jumped here</p>
<a href="#link__here"Jump to another part of the page </a>
To link to another part of the document you give that element an id. Then you create an anchor element and the <a href =”#id”>Text</a>
./ tells the browser to look for the file path from the current folder
<a href="./styles.css"></a>
I do not believe this is mandatory
Source
Ratatype - Online Touch Typing Tutor and Typing Lessons
Learn how to type faster 🎯. Take typing lessons on touch typing tutor Ratatype 💻, practice your keyboarding skills…www.ratatype.com
Learn HTML: Forms Cheatsheet | Codecademy
A slider can be created by using the type="range" attribute on an HTML input element. The range slider will act as a…www.codecademy.com