Review Ticket Week 6
This is a review of everything learned in week 6
How to Start Every HTML Project
%%html
<html>
<head>
<style>
</style>
</head>
<body>
</body>
</html>
Important HTML Tags and Attributes
%%html
<table>
<tr>
<th>Tags</th>
<th>Attributes</th>
</tr>
<tr>
<td>a -- combined with the href attribute to make a hyperlink</td>
<td>href -- used to add a hyperlink to the a tag</td>
</tr>
<tr>
<td>div -- can be used to create a class</td>
<td>id -- used to identify certain tags</td>
</tr>
<tr>
<td> </td>
<td>class -- used to identify div</td>
</tr>
</table>
Tags | Attributes |
---|---|
a -- combined with the href attribute to make a hyperlink | href -- used to add a hyperlink to the a tag |
div -- can be used to create a class | id -- used to identify certain tags |
class -- used to identify div |
%%html
<p>All of the links for the Web Programming Basics notebook</p>
<a href="https://gavincopley.github.io/GavinCopley/basics/html">Home</a> <br>
<a href="https://gavincopley.github.io/GavinCopley/basics/html">HTML Basics</a> <br>
<a href="https://gavincopley.github.io/GavinCopley/basics/html">JS Data Types</a> <br>
<a href="https://gavincopley.github.io/GavinCopley/basics/html">DOM</a> <br>
<a href="https://gavincopley.github.io/GavinCopley/basics/html">Java Script</a> <br>
<a href="https://gavincopley.github.io/GavinCopley/basics/html">JS Debugging</a>
All of the links for the Web Programming Basics notebook
Home
HTML Basics
JS Data Types
DOM
Java Script
JS Debugging
%%html
<table>
<tr>
<th>Grader</th>
<th>Total Score</th>
</tr>
<tr>
<td>John</td>
<td>4.48/5</td>
</tr>
<tr>
<td>Ian</td>
<td>asd/4</td>
</tr>
<tr>
<td>Matthew</td>
<td>asd/4</td>
</tr>
</table>
Grader | Total Score |
---|---|
John | asd/4 |
Ian | asd/4 |
Matthew | asd/4 |