Day 5: Review and Mini-Project
Review and Q&A Session
Inn vare njmal ithil padichath okke orikkal review cheyyam. Onnum manasilayillel, ithaanu chodhikkan nalla samayam!
Day 1: Introduction to HTML & CSS
- Ee course-inte overview.
- HTML basics: Structure, elements, tags.
Day 2: HTML - Lists, Links, Images, Tables
- Lists create cheyyuka: ordered um unordered um.
- Linksum imagesum add cheyyuka.
- Tables undakkuka: rowsum columnsum.
Day 3: CSS Basics
- CSS Syntaxum Selectorsum: Types, Classes, IDs.
- Styles apply cheyyuka: Colors, Backgrounds, Borders, Margins, Paddings.
Day 4: HTML Lists and Tables
- Ordered um unordered um lists create cheyyuka.
- Tables undakkuka: rowsum columnsum.
Day 5: CSS Fonts, Text Styles, Box Model
- CSS Fontsum Text Stylesum: font-family, font-size, font-weight, text-align.
- CSS Box Model manasilakkan.
Mini-Project: Oru Simple Webpage Design cheyyam
Innathe mini-project-il, njangal padichathokke upayogich oru basic webpage design cheyyam. Steps ivide undu:
- Puthiya oru HTML file create cheyyuka, basic structure add cheyyuka.
- Oru header sectionum title-um add cheyyuka.
- Oru unordered listum ordered listum create cheyyuka.
- Oru table undakkuka: headersum rowsum add cheyyuka.
- CSS styles apply cheyyuka webpage nannayi kanikkan.
Sample Code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My First Web Page</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
header {
background-color: #007bff;
color: #fff;
text-align: center;
padding: 10px 0;
}
section {
padding: 20px;
margin: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #007bff;
}
ul, ol {
margin: 10px 0;
}
table {
width: 100%;
border-collapse: collapse;
margin: 10px 0;
}
table, th, td {
border: 1px solid #ddd;
padding: 8px;
}
th {
background-color: #007bff;
color: white;
}
</style>
</head>
<body>
<header>
<h1>My First Web Page</h1>
</header>
<section>
<h2>My Lists</h2>
<h3>Unordered List</h3>
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
<h3>Ordered List</h3>
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
<h2>My Table</h2>
<table>
<thead>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
</thead>
<tbody>
<tr>
<td>Data 1</td>
<td>Data 2</td>
</tr>
<tr>
<td>Data 3</td>
<td>Data 4</td>
</tr>
</tbody>
</table>
</section>
</body>
</html>
Result Box
This is where you would see the result of your mini-project.
Exam MCQ
1. Which HTML tag is used to create an ordered list?
2. What attribute is used to specify an alternate text for an image, if the image cannot be displayed?
3. How do you create a hyperlink in HTML?
4. Which tag is used to define a table row in HTML?
5. What does CSS stand for?
6. How do you apply an external CSS file to an HTML document?
7. Which CSS property is used to change the text color of an element?
8. How do you change the background color of an element using CSS?
9. Which CSS selector is used to apply styles to all elements of a specific type?
10. How do you apply padding to all sides of an element using CSS?
11. Which CSS property is used to add space between the border and the content of an element?
12. What is the correct HTML for creating a hyperlink to another website?
13. Which tag is used to create a horizontal line in HTML?
14. How do you create an unordered list in HTML?
15. Which CSS property is used to make text bold?
16. How do you create a table heading in HTML?
17. Which CSS property is used to change the font of an element?
18. How do you make a comment in CSS?
19. Which CSS property is used to add a shadow to an element?
20. How do you align text to the center of an element using CSS?
21. Which tag is used to create a hyperlink to an email address in HTML?
22. How do you add a background image to an element using CSS?
23. What is the correct HTML for creating a checkbox?
24. Which CSS property is used to change the size of text?
25. How do you add a border to an element using CSS?
26. What is the correct HTML for creating a dropdown list?
27. Which HTML tag is used to define a division or section?
28. How do you create a link that will open in a new tab/browser window?
29. Which CSS property is used to control the space between lines of text?
30. How do you create a comment in HTML?