1.HTML COMMANDS
Mhtl commands called elements. Usually, an element have a start tag and an end tag
e.g. <p>.....</p>
2.HMTL PAGE STRUCTURE
<! DOCTYPE html>
head Section,and It's basically some kind of information that u don ' t see on the Web Pag E.
.... Head elements here
<body>-----------The body section was more things u see on the Web page!
... the main web page content goes here
</body>
3.A VERY Simple WEB PAGE
<! DOCTYPE html>
<title>a Simple Web page</title>
<meta name = "Author" content = "David Rossiter" >
<body>
<h1> means level 1 heading
<p>this Web page is so awesome!</p>--------<p>means paragraph
</body>
4.CODE that GOES in HEAD
<title>a Simple Web page</title>
<meta name = "Author" content = "David Rossiter" >
4.1 Anything in
So,the Lines state the title and the author.
4.2 All the information are told to the browers!
5.ATTRIBUTES
1.U need to use speech marks-HMTL arributes,also the Doule speech mark and the single speech mark is fine for BR Owers.
e.g. <meta name = "Author" content = "David Rossiter" > or
<meta name = ' Author ' content = ' David Rossiter ' >
2016-1-19 Beginner HTML5 First Day