0% found this document useful (0 votes)
6 views1 page

Basic Prgoram

The document provides instructions for creating a personal web page using HTML. It specifies elements such as using the <body> tag, setting a background color, applying margins, and including descriptive text about oneself with various formatting attributes. An example HTML code is provided to illustrate the requirements.

Uploaded by

goudakhilesh47
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views1 page

Basic Prgoram

The document provides instructions for creating a personal web page using HTML. It specifies elements such as using the <body> tag, setting a background color, applying margins, and including descriptive text about oneself with various formatting attributes. An example HTML code is provided to illustrate the requirements.

Uploaded by

goudakhilesh47
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

Question: Create a Personal Web Page

Design a web page using HTML to introduce yourself. The web


page should include the following elements:
1 Use the <body> tag to define the structure of the page.
2. Set a background color for the page using the bgcolor
attribute.
3. Apply margins to structure the layout appropriately.
4. Include text that describes yourself, formatted with different
text attributes like color, alignment, or style
Program:
<html>
<head>
<title>About Me</title>
</head>
<body bgcolor="#f0f8ff"
leftmargin="20px"
rightmargin="20px"
bottommargin="20px"
topmargin="20px"
text="blue">

<h1>Welcome to My Personal Web Page</h1>


<p>
Hello! My name is [Your Name]. I am passionate about
technology,
creativity, and continuous learning. I enjoy exploring new
ideas, coding, and solving challenging
problems. In my free time, I like reading, hiking, and
experimenting with new recipes.
</p>
<p>
My ambition is to make a meaningful impact through
innovation and to contribute to society
by building solutions that improve lives. Thank you for
visiting my page!
</p>
</body>
</html>

You might also like