HTML Basic
![htmlbasiclogo.png](/proxy/?url=https://content.instructables.com/FVJ/UJVW/KH4UDBJV/FVJUJVWKH4UDBJV.png&filename=htmlbasiclogo.png)
Hi! In this instructable you will learn the basic of html!
What App to Use to Code?
![Hihihi.bmp](/proxy/?url=https://content.instructables.com/FDA/89NA/KGW9NSKR/FDA89NAKGW9NSKR.bmp&filename=Hihihi.bmp)
If you are a beginner I think you need to start with notepad.
But you can use Notepad++ (I use)
Code
![htmlbasic.png](/proxy/?url=https://content.instructables.com/F2W/UF2Y/KH4UDBIV/F2WUF2YKH4UDBIV.png&filename=htmlbasic.png)
<html>
<head>
<title>The title of your website</title>
</head>
<body>
<h1>For big text</h1>
<h2>For small text</h2>
<p>For paragraphs</p>
<!-- For comments -->
<br> <!-- For space -->
<button>This is a button</button>
<br>
<br>
<input type="text">
<img src="the link" style="height: 500px">
</body>
</html>
Save It
![FVJUJVWKH4UDBJV.png](/proxy/?url=https://content.instructables.com/F1J/3CXA/KH69Q29O/F1J3CXAKH69Q29O.png&filename=FVJUJVWKH4UDBJV.png)
Remember to save as mywebsite.html