Lab Course - HTML

Lab Course – HTML
Exercise 8 Set A

1. Create an html page with 7 separate lines in different sizes. State size of each line in its text.


2. Create an html page with 7 separate lines in different colors. State color of each line in its text.


3. Create an html page with all the different text styles (bold, italic and underlined) and its combinations on separate lines. State style of each line in its text.

<!DOCTYPE html>
<html>
<head>
<title>Text Style</title>
</head>
<body>
<b>www.mycomputerknowledge.com</b><br>
<i>www.mycomputerknowledge.com</i><br>
<u>www.mycomputerknowledge.com</u><br>
</body>
</html>

4. Create an html page containing the polynomial expression as follows ao + a1x+ a2x2+ a3 x3

<!DOCTYPE html>
<html>
<head>
<title> Polynomial Expression </title>
</head>
<body>
<H1>a<sub>0</sub> + a<sub>1</sub>x + a<sub>2</sub>x<sup>2</sup> + a<sub>3</sub>x<sup>3</sup>
</body>
</html>

5. Create an html page with red background with a message “warning” in large size blinking.
Add scrolling text “read the message” below it.

<!DOCTYPE html>
<html>
<head>
<title> Warning </title>
</head>
<body bgcolor=”red”>
<center>
<font color=”green” size=”9″<center> Warning </font>
</center>
<marquee>Read the message</marquee>
</body>
</html>

If you like this post Lab Course – HTML, please share the feedback!

also see

C Programming language
Go Programming language
Linked List Array
Simplification Queue
DBMS Reasoning
Aptitude HTML
Previous articleHTML Layout
Next articleC Program to Check Whether a Number is Palindrome or Not

LEAVE A REPLY

Please enter your comment!
Please enter your name here