Today we practice tables (data, not layout) and forms (collecting user input). We also recap Week 4 essentials: links & images (paths, anchors, alt).
A website is a network of pages and assets connected by correct paths. Links connect documents; images add meaning and visual context.
target="_blank" together with rel="noopener noreferrer".
External link (new tab): Open SarjPOS website (external)
Email & phone: Email me · Call +90 500 111 2233
Jump link (anchor): Go to Contact Section
Local image tip: create a folder structure like:
Project/index.html and Project/img/me.jpg,
then use src="img/me.jpg".
Tables are for structured data like schedules and lists.
We build tables using <table>, <tr>, <th>, and <td>.
| Day | Time | Topic | Room |
|---|---|---|---|
| Monday | 10:00–11:30 | HTML Basics | A-201 |
| Wednesday | 10:00–11:30 | Links & Images | A-201 |
| Friday | Lab Day: Practice Tables + Forms | ||
| Saturday | 09:00–10:00 | Revision | A-105 |
| 10:00–11:00 | Mini Quiz | A-105 | |
| Note: Use tables for data, not for page layout. | |||
<th>) and no meaning
Forms collect data and send it to a server. Today we focus on the HTML side (no backend).
The form element uses action and method.
This section is linked by <a href="#contact">.