0% found this document useful (0 votes)
25 views2 pages

HTML Essentials Training Overview

The document provides instructions for students to watch LinkedIn Learning videos on HTML essentials and creating forms in HTML & CSS. It lists the videos and key HTML tags and concepts for students to focus on. It also includes references on HTML tables, input tags, select tags and CSS basics for students to review on the W3Schools website.

Uploaded by

alexei saenz
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
25 views2 pages

HTML Essentials Training Overview

The document provides instructions for students to watch LinkedIn Learning videos on HTML essentials and creating forms in HTML & CSS. It lists the videos and key HTML tags and concepts for students to focus on. It also includes references on HTML tables, input tags, select tags and CSS basics for students to review on the W3Schools website.

Uploaded by

alexei saenz
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

MIS2402 – HTML Essentials

LinkedIn Learning Videos

Visit [Link] and watch the following videos.

HTML Essential training – Jen Simmons

Notes: This introductory class is very good. Students are encouraged to watch all the videos in the class.
Please make note of the remarks in the table below. Also, there is an accompanying set of hands-on
resources found in the “Exercise Files” that accompany the class. All of these resources are try-it-
yourself links hosted on [Link].

Item Title HTML Tags and concepts to focus on


Intro What is HTML?
1.1 The role of HTML HTML, CSS, JavaScript
2.1 The syntax of HTML Elements <p>, Document Object Model
2.2 Paragraphs <p>
2.3 Headlines <h1> <h2> etc.
2.4 Bold and Italics <em> <i> <b> <strong>
2.5 Lists <ol> <ul> <li>
2.6 Quotes In-line elements vs. Block-level elements
2.7 Dates and times Tag attributes
2.8 Code, pre, and br <br>, HTML Entities
2.9 Superscripts, Subscripts, and small
text
3.1 Debugging HTML
3.2 HTML Attributes class, id
3.3 ARIA Codes
3.4 Formatting HTML HTML comments <!-- -->, self closing tags
3.5 Weird Characters HTML Entities (&nbsp; &copy;)
4.1 Links <a>, absolute URLs, HTTP, HTTPS
4.2 URL Paths Relative URLs and [Link]
4.3 Navigation
5.1 Images <img>
5.2 Image formats
5.3 Responsive images Low priority viewing - sections 5.3 through 6.4
5.4 Responsive width
5.5 Responsive pictures
5.6 Figure and figcaption
6.1 Audio
6.2 Video
6.3 Captions and subtitles
6.4 Embedding other media through
iframes
7.1 Supporting Languages The lang attribute of the <html> tag
7.2 Generic elements: div and span <div> and <span>
8.1 The HTML Page This is important! <!doctype html>
8.2 Document head <meta>, <title>, <link>, <script>
8.3 Structuring content
8.4 Examples of putting it all together
9.1 HTML form basics <form> <label> <input>
9.2 More on forms placeholder, value
9.3 Additional form element types <select> <option>
10.1 When to use tables
10.2 Building table rows <table> <tr> <td> <th>
11 Conclusion HTML5

HTML & CSS: Creating Forms – Clarissa Peterson

Notes: Students are expected to watch only the portions below.

Item Title HTML Tags to focus on


2.1 Basic form structure <form>
<input>
<label>
2.6 Select <select>
<option>

W3 Schools References
After watching the above videos, read the following resources at [Link]. Be sure to use the
“Try it yourself” editor feature provided by W3 Schools.

Title URL
HTML Tables [Link]

HTML Input Tag Input tags of type text and button will be used heavily in this course.

[Link]

[Link]

You will notice that there are two ways to create a button using HTML. There’s
<input type=’button’> and <button></button>. Both are valid, however, in this
course you will be using <input type=’button’>

HTML Select Tag This one is important. Be sure to give it a try.

[Link]

CSS Basics As you work through the following, note the use of the following attributes:
font-family, font-size, margin, padding, width, background-color

CSS Introduction - [Link]


CSS Syntax - [Link]
CSS Selectors - [Link]
CSS How to - [Link]
CSS Margins - [Link]
CSS Padding - [Link]
CSS Box Model - [Link]

You might also like