How to make a website in HTML
Answers
Answered by
0
Answer:
Step 1: Open Notepad (PC) Windows 8 or later: ...
Step 1: Open TextEdit (Mac) Open Finder > Applications > TextEdit. ...
Step 2: Write Some HTML. ...
Step 3: Save the HTML Page. ...
Step 4: View the HTML Page in Your Browser.
OR search here
https://www.w3schools.com/html/html_editors.asp
Answered by
0
Answer:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Page Title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial, Helvetica, sans-serif;
}
</style>
</head>
<body>
<h1>My Website</h1>
<p>A website created by me.</p>
</body>
</html>
Explanation:
Similar questions