HTML


HTML

This a summary of what I have learned during the class and by reading this tutorial.

 

First, we need to know what is HTML stands for, it’s a language that is used to structure a web page and its content.

 

HTML codes use TAGS, tags are used to give a specific form for a line on the webpage, any line between tags called ELEMENT, for example:

  • <p>My name is Emam.</p>  
    tags arent visible on the page so what will be showen is My name is Emam

 

MAIN TAGS

  1. <!DOCTYPE html> — it act as links to a set of rules that the HTML page had to follow to be considered good HTML.
  2. <html></html> — the <html> element. This element wraps all the content on the entire page.
  3. <head></head> — the <head> element. This element acts as a container for all the stuff you want to include on the HTML page that isn’t the content you are showing to your page’s viewers.
  4. — the element. This sets the title of your page, which is the title that appears in the browser tab the page is loaded in.
  5. <body></body> — the <body> element. This contains all the content that you want to show to web users when they visit your page, and it contain another sub tags,header, main and footer.

 

You can add links with this simple code right here:  

<a href="https://github.com/Emam96">Emam96</a> and it should be active on your page

 

Get back to EMAM’S HOMEPAGE

I have created this page as a part of my project using Github, Please visit my profile, I will be more than happy to hear from you all.                       © Emam Shararah 2021