How to make a website
Steffan Jensen
Posted on February 5, 2019
First you gonna need a text editor, if you use windows, you can use notepad or if you wanna go pro search for sublime text, in Linux go with vim or another editor, and mac... figure it out yourself
Now you have the text editor open, you should start typing.
<html>
<title>
My websites title
</title>
<body>
<h1>This is my website headline</h1>
Welcome to my website
<img src="https://markmanson.net/wp-content/uploads/2010/09/stones.jpg">
</body>
</html>
Example: https://jsfiddle.net/58ngefro/1/
Now click Save and save the file as mywebsite.html, now open the mywebsite.html file with your mouse in your directory.
Always when you create statements you should remember to use the <> and close it again with </> this is a way for the code to know the difference between when to open and close new statements.
Now we have a basic website. If you learn these 3 commands which is ,
and . You will be able to understand every HTML line in the matter of a few seconds.Now we have the basic we should be moving on to add different stuff to your new website, like images and different text.
<html>
<title>
My websites title
</title>
<body>
<h1>This is my website headline</h1>
Welcome to my website
<img src="https://markmanson.net/wp-content/uploads/2010/09/stones.jpg">
</body>
</html>
Example: https://jsfiddle.net/xo981m4s/
Save the file and open it.
Now you have created your first website with both a title,headline,text and image. There are thousands of more commands you can use in HTML. But with this tutorial we just covered the basic.
My Instagram Scraper Website:
https://instascraper.github.io
Download My Instagram Bot:
https://github.com/instagrambot/Instagram-scraper-with-autopost
Follow me:
https://www.linkedin.com/in/steffan-jensen/
https://github.com/reliefs/
https://dev.to/reliefs/
https://fiverrdiscountcode.com
Posted on February 5, 2019
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.