html questions sem3
html questions sem3
<!DOCTYPE html>
<html>
<head>
<title>Marquee Examples</title>
</head>
<body>
<h2>Marquee Tag Examples</h2>
<br><br>
<br><br>
QUESTION 7-
<!DOCTYPE html>
<html>
<head>
<title>User Registration</title>
</head>
<body>
<h1>User Registration</h1>
<p>Please complete the following form to register with our site:</p>
<ul>
<li><a href="wte.html" target="_blank">Web Technologies (WTE)</a></li>
<li><a href="python.html" target="_blank">Python Programming</a></li>
<li><a href="dbms.html" target="_blank">Database Management System
(DBMS)</a></li>
</ul>
</body>
</html>
wte.html
--> <!DOCTYPE html>
<html>
<head>
<title>Web Technologies (WTE) Syllabus</title>
</head>
<body>
<h1>Web Technologies (WTE) Syllabus</h1>
<p>This course covers the following topics:</p>
<ul>
<li>HTML & CSS</li>
<li>JavaScript</li>
<li>Responsive Design</li>
<li>Web Development Frameworks</li>
<li>Deployment and Maintenance</li>
</ul>
<a href="index.html">Back to Syllabus</a>
</body>
</html>
python.html
--> <!DOCTYPE html>
<html>
<head>
<title>Python Programming Syllabus</title>
</head>
<body>
<h1>Python Programming Syllabus</h1>
<p>This course covers the following topics:</p>
<ul>
<li>Introduction to Python</li>
<li>Data Structures in Python</li>
<li>Object-Oriented Programming</li>
<li>File Handling</li>
<li>Modules and Packages</li>
<li>Database Access with Python</li>
</ul>
<a href="index.html">Back to Syllabus</a>
</body>
</html>
dbms.html
--> <!DOCTYPE html>
<html>
<head>
<title>Database Management System (DBMS) Syllabus</title>
</head>
<body>
<h1>Database Management System (DBMS) Syllabus</h1>
<p>This course covers the following topics:</p>
<ul>
<li>Introduction to DBMS</li>
<li>SQL and NoSQL Databases</li>
<li>Database Design and Normalization</li>
<li>Transactions and Concurrency Control</li>
<li>Database Security</li>
</ul>
<a href="index.html">Back to Syllabus</a>
</body>
</html>
QUESTION 10-
Index.html
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<h2>Input Devices</h2>
</a>
</a>
<h2>Output Devices</h2>
<a href="monitor.html" target="_blank">
</a>
</a>
</body>
</html>
keyboard.html
<!DOCTYPE html>
<html>
<head>
<title>Keyboard</title>
</head>
<body>
<h1>Keyboard</h1>
<p>The keyboard is an input device that allows the user to enter text, numbers, and
commands into a computer. It is one of the primary ways users interact with
computers.</p>
</body>
</html>
mouse.html
<!DOCTYPE html>
<html>
<head>
<title>Mouse</title>
</head>
<body>
<h1>Mouse</h1>
<p>The mouse is an input device used to point to and select items on a computer
screen. It allows users to interact with the graphical user interface (GUI) of a
computer.</p>
</body>
</html>
monitor.html
<!DOCTYPE html>
<html>
<head>
<title>Monitor</title>
</head>
<body>
<h1>Monitor</h1>
<p>The monitor is an output device that displays information in visual form. It is the
screen on which you view your work, watch videos, and interact with software.</p>
</body>
</html>
printer.html
<!DOCTYPE html>
<html>
<head>
<title>Printer</title>
</head>
<body>
<h1>Printer</h1>
<p>The printer is an output device that produces a physical copy of digital
documents. It can print text and images on paper.</p>
<a href="index.html">Back to Devices</a>
</body>
</html>
QUESTION 11-
<!DOCTYPE html>
<html>
<head>
<title>Text Formatting Tags in HTML</title>
</head>
<body>
<h1>Text Formatting Tags in HTML</h1>
<table border="1" cellpadding="10">
<tr>
<th>Formatting Tags</th>
<th>Usage</th>
</tr>
<tr>
<td><b>Bold</b></td>
<td><b>This text is bold.</b></td>
</tr>
<tr>
<td><i>Italic</i></td>
<td><i>This text is italic.</i></td>
</tr>
<tr>
<td><u>Underline</u></td>
<td><u>This text is underlined.</u></td>
</tr>
<tr>
<td><em>Emphasized</em></td>
<td><em>This text is emphasized.</em></td>
</tr>
</table>
</body>
</html>