HTML Basic

by CristoferK in Living > Life Hacks

1529 Views, 3 Favorites, 0 Comments

HTML Basic

htmlbasiclogo.png

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

What App to Use to Code?

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

<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

Remember to save as mywebsite.html