Computer Science, asked by ayushipranjalshruti, 1 year ago

create an html page computer

Answers

Answered by Lakkie
3
Your answer :

Basic Structure of HTML :

<html>
<head>
<title>... </title>
</head>
<body>
.
.
.
</body>
</html>

Now using this HTML structure you can create webpages!

Hope this helps.

Have a nice day =)
Answered by kapoorgarima
3
<!DOCTYPE html> <html> <head> <title>wikiHow Fan Page</title> </head> <body> <h1>Welcome to My Page!</h1> <p>This is a fan page for wikiHow. Make yourself at home!</p> <h2>Important Dates</h2> <p><i>January 15, 2019</i> - wikiHow's Birthday</p> <h2>Links</h2> <p>Here is a link to wikiHow: <a href="www.wikihow.com">www.wikihow.com</a></p> </body> </html>

Similar questions