Introduction: HTML Basic

About: I like programming and robotic!

Hi! In this instructable you will learn the basic of html!

Step 1: 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)

Step 2: 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>

Step 3: Save It

Remember to save as mywebsite.html