without any intros let's get started:requirements:
- a text editor a list of the text editors i've used
- a small knowledge of how computers work and communicate with each other
![]() |
Photo by Artem Sapegin on Unsplash
|
<!DOCTYPE html>
<html>
<head>
<title>this is the title of your website</title>
</head>
<body>
<h1>this is a heading</h1>
<p>this is a paragraph</p>
</body>
</html>
after that, look at the top of your text editor and go to file and then choose save as the only thing you need to understand here is that usually people name these html files as 'index' and the extension of that file is html
which means the file's name should look something like this "index.html"
and now you can view it with your browser.
we will talk more about the code next time.

Comments
Post a Comment