RainAngel's Webpage

Home Photoshop Youtube HTML About Gallery

How to build a simple HTML page.

HTML is Hypertext Markup Language. The file ends with .html extensions. It is a text file but we see this on a web browser. To start to make an HTML page you first need to write <!DOCTYPE html>. Under that, you would add <html></html>. Next, inside <html> you would add<head> and in <head> you can add a <title>, <meta-description> and author. Then you will write down <body></body>. Inside <body> you can put headers, paragraphs, lists, and images. To make a header you write down <h1> for your first header. If you make five headers you would write <h5>. To make a paragraph you write <p>. There are two different lists one of them is an ordered list and the other is an unordered list. To write an ordered list you write <ol>. And when writing down something on the list you write <li>.Ex. <li>Cookies. For the unordered list, you write <ul>. When doing any of these they always need and ending except <!DOCTYPE html>. / means to end of a tag. For example <p> for the starting and </p> for the ending. To add a picture you add <img src=” Where you put the link in " alt="The name of you picture" height="600">. To add a youtube video you write <iframe width="560" height="315" src="The link" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>. Here I will put my HTML writting !!