html for beginners

Solutions on MaxInterview for html for beginners by the best coders in the world

showing results for - "html for beginners"
Lisandro
05 Feb 2017
1<!-- 
2For more details on HTML i'd recommend you use:
3https://www.w3schools.com/html/default.asp
4
5However here is a very basic HTML web page:
6-->
7<!DOCTYPE html>
8<html>
9  <head>
10    <title>Hello!</title> <!-- Text on the tab-->
11  </head>
12  <body>
13    <h1>Hello World! This is my first web page.</h1> <!-- Large header text-->
14    <p>This is my first paragraph</p> <!-- Paragraph text-->
15  </body>
16</html>