code lines
code colored in red is placeholder code.
<!DOCTYPE html>
-- Code that makes the program you are using recognize the code you are typing as HTML5
<html>
-- the main part of your website
<title>
-- this changes the title of the website (the name of it on the tab)
<h1>, <h2>, <h3>, <h4>, <h5>, <h6>
-- headings
<p>
-- paragraph
<a href="videos.html">Videos</a>
-- link
<img src="Cy.png" alt="Cy" style="width:50px;height:50px;" />
-- link images
<ul>
-- unordered list
<ol>
-- ordered list
<li>
-- list (goes inside of <ul>
tags)
--TABLE GROUP--
<table>
-- table
<tr>
-- table row
<th>
-- table header
<td>
-- table data
you can see how it is used here.
<br>
-- Line Break
<hr>
-- Horizontal Line
<div class="header">
-- DIV; this relates to CSS. go to here to learn how to use DIV
<link rel="icon" href="Cy.png">
--Icon for your website
<link rel="stylesheet" href="style.css">
-- insert CSS
<center>
-- put text/images to center
<style>
-- put CSS code into a HTML file without linking
<meta http-equiv="refresh" content="5; URL=index.html" />
-- redirect to another page
<sup>
-- make text superscript
<sub>
-- make text subscript
click here for CSS
click here for JS
<a href="howtocode/symbols.html">