Build Your First Website
Install a subline text
HTML Default Rule
Tags with opening and closing
1 <! DOCTYPE html>2 3 4 <title>jennifer ' s first website </title>5 6 <body>7 Hello WORLD!!!! 8 </body>9
DEVELOPER FUNDAMENTALS:III
DOCTYPE says, hey just a heads up a file was going to use HTML5
The senior developers get good salaries and good jobs is the ones fully understand all the meaning behind the things they Do
HTML tags
10-15 tags is used in 99% time
It acutally goes all the the-the-to 6
<P></P>: Paragraph
<b></b>: Bold
<ol></ol>: Ordered list
<li>banban</li>
<li>apple</li>
<ul></ul>: Unordered list
Self Closing HTML tags
<br>: Break line
Src:attribute which had special properties to the specific tags and attribute always have a value attached to
Width:attribute
Height:attribute
Anchor tag
<a href = "newpage.html" >new page </a>
Href:attribute and it ' s the hypertext reference
It can link to other pages
Why named Index.html
By default, most servers say:i would return index.html once I see it
That's why we think index.html as our home page
Relative path vs Absolute path
Relative path in local <a href = "webdevelopment/newpage.html" >new page </a> go to files://protocol
Absolute path on-line <a href = "www.googe.com" >new page </a> go to https://protocol
HTML Forms
[Udemy] Webdevelopment_html5