| Course topics by week | |
|---|---|
| 1. Intro to HTML | 6. Page Layout with CSS |
| 2. More on Creating Web Pages | 7. HTML Tables |
| 3. Developing a Web Site | 8. HTML Forms |
| 4. Design with CSS | 9. Multimedia |
| 5. Midterm | 10. Term Project |
Review due dates and what you need to do this week.
Review the weekly learning cycle shown in the Moodle side-bar.
HTML “boiler plate”
xxxxxxxxxx <html lang="en"> <head> <meta charset="UTF-8"> <title>Some Title</title> </head> <body> </body></html>HTML elements
Visual Studio Code
Install VS Code Instructions are here: Setting up Visual Studio Code
Create an HTML file
HTML element attributes
One-sided or "self-closing" tags
<br><img src="kitten.png" alt="A very cute kitten">
Here are some elements that we haven’t covered yet:
Paragraph: <p> some text </p>
strong (bold): <strong>some text</strong>
emphasis (italics): <emphasis>some text</emphasis>
image: <img alt="description" src="photo.jpg">
Put the image file in the same folder with the html file.
Link: <a href="http://lanecc.edu">Lane Community College</a>
Ordered list:
xxxxxxxxxx <ol> <li>First item</li> <li>Second item</li> </ol>xxxxxxxxxx <ul> <li>First item</li> <li>Second item</li> </ul>
The lab 1 instructions are posted in the week 1 section on Moodle.
Web Authoring Lecture Notes by Brian Bird 2018, revised 2022, are licensed under a Creative Commons Attribution-ShareAlike 4.0 International License.