SS1 HTML CSS Robotics Handout (1) 110301
SS1 HTML CSS Robotics Handout (1) 110301
1: Introduction to HTML
Meaning of HTML
HTML (HyperText Markup Language) is the standard language used to create and
structure content on the web. It allows us to display text, images, videos, and links using
tags and elements.
History of HTML
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
Week 2: HTML Tags and Elements
List Tags
Examples:
<b>Bold Text</b><br>
<i>Italic Text</i><br>
<u>Underlined Text</u>
Activity:
Inserting Images
Adding Hyperlinks
</video>
Activity:
CSS (Cascading Style Sheets) describes how HTML elements are displayed on the
screen. It controls colors, fonts, layouts, and more.
1. Inline CSS
<style>
h1 { color: blue; }
</style>
Syntax Example:
css
p{
font-size: 16px;
color: green;
Activity:
- Style a paragraph with different colors and font sizes using all three CSS methods.
Week 5: CSS Properties and Layout
Box Model
- Content
Example:
css
div {
margin: 10px;
padding: 20px;
background-color: lightblue;
Project:
- Design a personal profile webpage with styled text, colors, and backgrounds.
Week 6: Tables and Forms in HTML
Creating Tables
html
<table border="1">
<tr>
<th>Name</th><th>Score</th>
</tr>
<tr>
<td>Alice</td><td>90</td>
</tr>
</table>
Creating Forms
html
<form>
Gender: <select>
<option>Male</option>
<option>Female</option>
</select><br>
Message:<br>
<input type="submit">
</form>
Activity:
Meaning of Robotics
Robotics involves the design, construction, and operation of robots that can perform tasks
either automatically or semi-automatically.
History of Robotics
Importance of Robotics
- Automate tasks
Components of a Robot
Activity:
Types of Robots
Applications
- Manufacturing
- Healthcare
- Agriculture
- Military
Activity: