I'm going to have all the HTML tags I use in a bulleted list :
<!DOCTYPE html> Makes something a html doc (no second one needed)
<html> Idrk but it makes the code within html (i dont think u need it tho? - do it anyway) (according to w3 schools its important but i swear thats what doctype does... uggggh)
<head> stuff not rendered on the actual site
<title> (IN HEAD TAG) used for site title
<body> where stuff is rendered
<h1...h2...h3...h6> Different headings h1 is the biggest
<p> Paragraph text (dont need for text but recommended)
<li> used with <ul> <ol> bulleted and numbered points
<ul> used with <li> for bullet points
<ol> used with <li> for numbered points
<div> used for grouping of elements into one element
<br> a new line (no closing tag)
<hr> horizontal rule (no closing tag)
<img> used with src attribute - for images
<a> used with href attribute - for links
<blockquote> used to indent a quote - you can also cite
<!-- - comment tag
<form> makes a form
<input> makes a box for input
<label> A caption for an input (use an id to link to it)
HTML Attributes (just like the tags i will bullet them)
src - used for images ex: "/images/goofy.jpg"
href - used for links ex: "https://www.wijathemidja.org"
cite - used for quotes ex: "https://www.oscarwildesite.com"
style - used for text ex : "color : skyblue" (Comes from CSS)
alt - alternate text for screen readers
type - used with input tag ex: ="text"
id= unique id for element, used for servers and linking of values.
Some terminology
Opening tag the <tag>
Closing tag the </tag>
Attributes are properties in a tag
Tags change content in HTML