Omar Patel
Software developer/instructor
Aka DES261
Checking the comp across Mobile, Tablet, and Desktop
Please submit your comps as either a jpg, jpeg, pdf, or png format and email them in zipped format to omarpatel123@gmail.com
Now that you know what the site is going to look like, we're going to try and bring it to life using HTML, CSS, and JavaScript.
Well, hopefully the video and the article I had you read helped explain some of what HTML and CSS is, but let's go over it again.
OK, now that we know what we're supposed to learn, let's start learning!
Instead of building a more-than-likely-crappy tutorial for you to learn HTML and CSS, I'm going to utilize existing, tested resources like the lazy engineer I am!
In this class, we're going to be completing this free tutorial from Code Academy: https://www.codecademy.com/en/tracks/web over the next couple of weeks.
We're going to stop at each section and review over any material students don't understand. I'll then go over further examples on the board.
Sign up for Code Academy by going to codeacademy.com and then start working on their "HTML & CSS" track.
Next, pair up in groups! You will get stuck and it's always better to pair program than program on your own!
You can go as fast as you want, but be sure to really understand what you're learning.
I'll be answering questions during your exercises and in between them.
Good luck!
<ol>
<li>First Item</li>
<li>Second Item</li>
<li>Third Item</li>
</ol>Code
Output
<p style="font-size: 12px;">This text is now 12px in size</p>Code
<p style="font-size: 18px;">This text is now 18px in size</p>Code
<p style="font-family: Arial;">This text is now using Arial as the font family.</p>Code
Code
<p style="color: blue;">This text is now blue.</p><p style="font-size: 20px; color: blue; font-family: Arial;">
A truly spectacular paragraph!</p>Code
<h3 style="background-color: violet;">Favorite Football Teams</h3>Code
<h3 style="text-align: center;">This will be in the middle of the container</h3>Code
<p>I am not bold, <strong>but I am</strong></p>Code
<p>I am not emphasized, <em>but I am</em></p><table>
<tr>I'm a row</tr>
<tr>Me too!</tr>
</table>Code
<table>
<tr>
<td>First Column</td>
</tr>
<td>Second Column</td>
</table>Code
<table>
<thead>
<tr>
<th>Header for first Column</th>
<th>Header for second Column</th>
</tr>
</thead>
<tr>
<td>First Column</td>
<td>Second Column</td>
</tr>
<tr>
<td>First Column</td>
<td>Second Column</td>
</tr>
</table>Code
Code
<table>
<thead>
<tr>
<th>Header for first Column</th>
<th>Header for second Column</th>
</tr>
</thead>
<tbody>
<tr>
<td>First Column</td>
<td>Second Column</td>
</tr>
<tr>
<td>First Column</td>
<td>Second Column</td>
</tr>
</tbody>
</table>Code
<table>
<thead>
<tr>
<th colspan="2">Covers the length of two columns</th>
<th>blah blah blah</th>
</tr>
</thead>
<tbody>
<tr>
<td>First Column</td>
<td>Second Column</td>
</tr>
</tbody>
</table>Code
<div>This is a container</div>Code
<h1>styled only on h1
<span style="color: red;">
able to style this part separately, but along with h1 styling
</span>
more words</h1>Finish the HTML part of the the tutorial by next week. This includes: INTRODUCTION TO HTML, HTML STRUCTURE: USING LISTS, HTML STRUCTURE: TABLES, DIVS, AND SPANS
Quiz for next week will be based off of the HTML Tutorials
By Omar Patel