Q.5 Create the following webpage using an HTML code:
Answers
Answer:
You got a look at an HTML document in Chapter 2, but now you’ll get to create one yourself and play around with it in the browser. The demonstration in this chapter has five steps that cover the basics of page production.
Step 1: Start with content. As a starting point, we’ll write up raw text content and see what browsers do with it.
Step 2: Give the document structure. You’ll learn about HTML element syntax and the elements that give a document its structure.
Step 3: Identify text elements. You’ll describe the content using the appropriate text elements and learn about the proper way to use HTML.
Step 4: Add an image. By adding an image to the page, you’ll learn about attributes and empty elements.
Step 5: Change the page appearance with a style sheet. This exercise gives you a taste of formatting content with Cascading Style Sheets.
Explanation:
MARK AS BRANIST
Explanation:
<!DOCTYPE html>
<html>
<head>
<title>Document</title>
</head>
<body>
<h4>Name</h4><input></input>
<h4>Marks</h4><input></input>
<h4>DOB</h4><input placeholder="dd-mm-yyyy">
<h4>password</h4><input></input>
<h3>Gender</h3>
<input placeholder="Male">
<input placeholder="Female">
<h3>Which are your favourite subjects</h3>
<input placeholder="Maths">
<inputplaceholder="Computer"></inputplaceholder>
<input placeholder="English">
<h3>Enter your marks</h3>
<input placeholder="">
</body>
</html>