HTML/CSS Guide

Common HTML Tags outside body

Tag Definition Examples
<!DOCTYPE html> it tells the webpage what type of code you're using the website works so what more could you want
<html lang="en"> it tells the webpage what language you're using this language is english
<meta charset="UTF-8"> it tells the webpage what alphabet you're using qwertyuiopasdfghjklzxcvbnm
<title>(it uses closing tags) it tells the webpage what you want the website to be labeled the website is called a3
<style>(it uses closing tags) it tells the webpage what you want the website to look like
internal css makes it brown
<link rel="stylesheet" href="style.css"> it tells the webpage what css file it should take style from
external css make the font good
<link rel="icon" type="image/x-icon" href="favicon.ico"> it tells the webpage what the little image at the top should look like its a little devil
<---