HTML
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<title>DR. SHYAMA PRASAD MUKHERJEE UNIVERSITY</title>
</head>
<body>
<center>
<h1>
<u><b><font color="yellow" face="Arial" bgcolor="blue">
DR. SHYAMA PRASAD MUKHERJEE UNIVERSITY
</font></b></u>
</h1>
</center>
</body>
</html>
2. Create an HTML page that contains two lists. The first list in unordered list contains the Input
Devices: Keyboard, Mouse, and Scanner. The second list is ordered list and contains the
Output Devices: Monitor, Printer, and Speaker
<!DOCTYPE html>
<html lang="en">
<head>
<title>Input and Output Devices</title>
</head>
<body>
<h2>Input Devices</h2>
<ul>
<li>Keyboard</li>
<li>Mouse</li>
<li>Scanner</li>
</ul>
<h2>Output Devices</h2>
<ol>
<li>Monitor</li>
<li>Printer</li>
<li>Speaker</li>
</ol>
</body>
</html>
3. Design an HTML page “DR. SHYAMA PRASAD MUKHERJEE UNIVERSITY” with set one solid
colour on the background and change font: size, colour and scroll them by alternative.
<!DOCTYPE html>
<html lang="en">
<head>
<title>DR. SHYAMA PRASAD MUKHERJEE UNIVERSITY</title>
</head>
<body bgcolor="lightblue">
</body>
</html>
4. Design an HTML page to create linking to the different sections in a same page.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Links</title>
</head>
<body id="top">
<a href="#section1">Section 1</a>
<a href="#section2">Section 2</a>
<a href="#section3">Section 3</a>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Linking to Other Documents</title>
</head>
<body>
<h1>Links to Other Documents</h1>
<ul>
<li><a href="document1.html">Open Document 1</a></li>
<li><a href="document2.html">Open Document 2</a></li>
<li><a href="document3.html">Open Document 3</a></li>
</ul>
</body>
</html>
6. Design an HTML page to load two images image1 and image2 make image1 as hypertext
image.
<!DOCTYPE html>
<html lang="en">
<head>
<title>Hyperlinked Image</title>
</head>
<body>
<a href="https://www.example.com">
<img src="image1.jpg" alt="Image 1" width="300">
</a>
<img src="image2.jpg" alt="Image 2" width="300">
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Student Report</title>
</head>
<body>
</body>
</html>
8.