Lab Course – HTML
Exercise 8 Set A
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 |