1. Design a page having suitable background colour and text colour with title “My First
Web Page” using all the attributes of the Font tag.
Procedure:
1. Go to start ->all program – >accessories-> notepad.
2. Type the html code.
3. Include title ”my first web page” in title tag.
4. Set the background for the webpage by using bgcolor attributes of the body tag.
5. Use font tag to display text.
6. Go to file->save->save the file with html extension.
7. Run the html code using browser.
<html >
<head>
<title>My first web page</title>
</head>
<body bgcolor="green">
<font size="16" color="white" face="Arial"> Welcome to RNB GLOBAL UNIVERSITY </font>
</body>
</html>
***************output***************
0 Comments