HTML Basic
Hi! In this instructable you will learn the basic of html!
What App to Use to Code?
If you are a beginner I think you need to start with notepad.
But you can use Notepad++ (I use)
Code
<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
Remember to save as mywebsite.html