WEB PROGRAMMING TASK – 12
Name: Shaunak Dhar Reg No. : 24BCE2015
Create an HTML page for a “Web Technologies Course Outline” that contains:
• An ordered list for the sequence of modules (HTML, CSS, Bootstrap, JavaScript, PHP etc.).
• For the HTML module, an unordered sub-list showing topics (elements, attributes, lists,
tables).
• A description list at the bottom defining three terms: ordered list, unordered list, and
description list.
<html>
<head>
<title>Web Technologies</title>
</head>
<style>
.header{
background-color:black;
color:red;
}
</style>
<body>
<div class="header">
<h1> Web Technologies </h1>
</div>
<div class="content">
<ol>
<li>HTML</li>
<ul>
<li>Basic Structure & Tags</li>
<li>Forms & Input Elements</li>
<li>Media & Links</li>
<li>Semantic HTML</li>
</ul>
<li>CSS</li>
<ul>
<li>Selectors & Properties</li>
<li>Box Model</li>
<li>Layout Techniques</li>
<li>Responsive Design</li>
</ul>
<li>Bootstrap</li>
<ul>
<li>Grid System</li>
<li>Components</li>
<li>Utilities</li>
<li>Forms & Layout Helpers</li>
</ul>
<li>Javascript</li>
<ul>
<li>Basics & Syntax</li>
<li>Functions & Control Flowl</li>
<li>DOM Manipulation</li>
<li>Asynchronous JavaScript</li>
</ul>
<li>PHP</li>
<ul>
<li>PHP Basics</li>
<li>Forms & User Input Handling</li>
<li>Database Connectivity</li>
<li>Sessions & Authentication</li>
</ul>
</ol>
<dl>
<dt>Ordered List</dt>
<dd>An ordered list starts with the <ol> tag. Each list item starts with the <li> [Link]
list items will be marked with numbers by default:</dd>
<dt>Unordered List</dt>
<dd>An unordered list starts with the <ul> tag. Each list item starts with the <li>
[Link] list items will be marked with bullets (small black circles) by default:</dd>
<dt>Description List</dt>
<dd>A description list is a list of terms, with a description of each [Link] <dl> tag defines
the description list, the <dt&lgt; tag defines the term (name), and the <dd> tag describes
each term:</dd>
</dl>