diff --git a/01-HTML-Intor.md b/01-HTML-Intor.md deleted file mode 100644 index 09b7b5c5..00000000 --- a/01-HTML-Intor.md +++ /dev/null @@ -1,348 +0,0 @@ -# Sesion 01: HTML-01 -Welcome to the first session about HTML, this is going to be a great guide to get you started with HTML which is what every web page consists of. - -**Learning Outcomes** -- Picking a code editor and get familiar with other tools we will be using in the course -- Basic understanding of HTML: DOM, Element, Attributes -- Understand the basic file structure for a web page -- Formatting Page Content with HTML -- Get to know and use some HTML elements: Links, Lists, Tables and more - -**Note**: At the end of the workshop we will have 15 mins for questions so prepare questions for us. - - ---- - - -## Setup, Text Editors & Other Tools -To go through the course and be able to apply what you learn in the workshops you need to have the following: - -- **A Browser**: Chrome (preferred), or Firefox or any modern browser -- **A Text Editor**: VS Code (preferred), Atom, Sublime Text, Brackets or your preferred choice - -Make sure that you have these two installed before you continue. - -**Note**: Throughout the course we will use **Codepen** to try out/test some code snippets and these we will share with you so it would be great if you create a Codepen account now. - - -## What is HTML? -HTML stands for **H**yper **T**ext **M**arkup **L**anguage, HTML is the **standard markup** language for Web pages and HTML elements are the building blocks of HTML pages. - -### The History of HTML -HTML was first created by Tim Berners-Lee, Robert Cailliau, and others starting in 1989. - -**Hypertext** means that the document contains links that allow the reader to jump to other places in the document or to another document altogether. The latest version is known as HTML5. - -A **Markup Language** is a way that computers speak to each other to control how text is processed and presented. To do this HTML uses two things: tags and attributes - -Read more: https://html.com/#ixzz6DGtsrDHr - - -## HTML Elements -As we mentioned in the previous paragraph, **HTML Elements** are the building blocks of a webpage. An HTML element is a **start tag** and an **end tag** with content in between. - -```html= -

Hello World

-``` - -This is an example of an HTML element which represents a big heading as you can see the starter tag is `

` and the end tag is `

` and the content `hello world` goes between them. - - - -![](https://www.bluekatanasoft.com/wp-content/uploads/element-structure.png) - - -**The basic elements of an HTML page are**: - -- A text header, denoted using the `

`, `

`, `

`, `

`, `

`, `
` tags. -- A paragraph, denoted using the `

` tag. -- A horizontal ruler, denoted using the `


` tag. -- A link, denoted using the `` (anchor) tag. -- A list, denoted using the `