|
Web Design ![]() This website demonstrates using wikis as teaching and learning tool. The course instructor is happy to share the teaching materials here with those who find it readable. |
Tutorial /
HTML and CSS: Table and ListOverview - This tutorial gives you a hands-on experience in coding HTML tables and lists, as well as using CSS to style tables and lists. Note: We use a problem-solving approach to learn CSS. If you want a conventional approach to learn CSS, please go to CSS Tutorial by w3schools.com and spare some time (at home or during class) to study CSS Basic. ![]() Activity 1: HTML Table
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>WD Tutorial 03 Activity 1</title>
</head>
Activity 2: Style Tables with CSS
Activity 3: HTML Definition List
OUHK U123
Introduction to the Internet 國際網絡導論
OUHK U234
Web Sites Design 網頁設計
OUHK CT212
Network Programming and Design 網絡程式設計
Activity 4: Style Definition List with CSS
Activity 5: HTML List
<h2>Programme Code</h2>
<ul>
<li>BSCCEF1 – Year 1 entry of the BSc in Computer Engineering</li>
<li>BSCCEF2 – Year 2 entry of the BSc in Computer Engineering</li>
<li>BSCCEF3 – Year 3 entry of the BSc in Computer Engineering</li>
<li>BSCHECEF1 – Year 1 entry of the BSc(Hons) in Electronic and Computer Engineering</li>
<li>BSCHECEF2 – Year 2 entry of the BSc(Hons) in Electronic and Computer Engineering</li>
<li>BSCHECEF3 – Year 3 entry of the BSc(Hons) in Electronic and Computer Engineering</li>
</ul>
Activity 6: Style List with CSS
Submission
|