How to create html webpage
Answers
Answer:
Html webpage can be created on notepad [in computer]
Basic structure:
<html>
<head>
<title>....</title>
</head>
<body>
content of the webpage
</body>
</html>
Save it with .htm or .html extension
Explanation:
these tags[eg. <html> etc ] have features
like <html> states that we are gonna create a webpage using html method
<head> states for heading of the webpage you can write it if you want
<title> states the title of the webpage.you can say a heading we usually have in our copies
<body>
you will write the content which you want on the webpage in this tag
Extra tags:
there are many tags which can be useed to modify the webpage
like
<font>
it is used in the body tag and is used to edit the content's text
just like its size color
<marquee>
this tag adds a moving text to the webpage...that tag moves either up-down or right-left
MARK IT AS BRAINLIEST IF YOU FIND IT HELPFUL
Answer:
hey there ,I have given u answer below go through it
Explanation:
<!DOCTYPE html>
<html>
<head>
<title> hey this is my first webpage</title>
</head>
<body bgcolor="green" size="50" text="red">
<b> hey there,this is my first <mark>WEBPAGE</mark></b><br><br>
<i>this is year 2020,coronavirus pandemic is going on </i><br><br>
<u><b> SO LIVE HEALTHY AND HAPPY LIFE,</b></u><br>
<u>DONT GET FRUSTATED,</u><br>
THERE IS ALWAYS SOME WAY FIND IT OUT<br><br><br><b>THANKYOU And WELCOME</b>
</body>
</html>