Create a simple web page using
following features.
• Largest heading level 'Biodata' text
in centre.
• Name in Bold.
Address in Italics.
Standard with underline.
Answers
Answer:
<!DOCTYPE html>
<html>
<head>
<title>Biodata</title>
</head>
<body>
<h1 style="text-align: center;">Biodata</h1>
<p>
<strong>Name:</strong> John Doe<br>
<i>Address:</i> 123 Main Street<br>
<u>Standard:</u> 10th
</p>
</body>
</html>
Explanation:
The code you provided is a simple HTML code for a web page that displays "Biodata" as the largest heading level in the center of the page, with "Name: John Doe" in bold, "Address: 123 Main Street" in italics, and "Standard: 10th" with an underline. The title of the web page is also set to "Biodata." This will create a static web page with the mentioned feature. You can use CSS and JavaScript to enhance the page's look and functionality.
More questions and answers
https://brainly.in/question/39377054
https://brainly.in/question/39376925
#SPJ1