1. Basic elements of a web page
1.1. basic tags
1.1.1. <html>
1.1.2. <head>
1.1.3. <body>
1.1.4. <title>
1.2. software
1.2.1. VisualStudioCode
1.2.2. SublimeText
1.2.3. Notepad
1.3. Extention
1.3.1. .html
2. Leonardo Lombardo
2.1. Saif Edin Gharsallah
2.1.1. Gabriele Vella
3. Hyper Text Markup Lenguage
3.1. HyperText
3.1.1. Is a way to organize and communicate information as a network. In that way a user can read information using several path.
3.2. MultiMedia
3.2.1. Is a way to communicate information that used at the same time two kind of media. Such as audio, video and photo.
3.3. HyperMedia
3.3.1. Is an extension to hypertext providing multimedia facilities. Such as those handling sound and video.
4. The five components of html
4.1. Attributes
4.1.1. An attribute is used to specify some information about the tags. It’s composed of two parts: the name of the attribute and its value.
4.1.1.1. Name
4.1.1.1.1. href=
4.1.1.2. Value
4.1.1.2.1. "immagini/logo.jpg"
4.2. Tags
4.2.1. A tag is a letter or a small word surrounded by angle brackets. There are two kinds of tags: opening tags and closing tags
4.2.1.1. Open Tags
4.2.1.1.1. <p>
4.2.1.2. Closing Tags
4.2.1.2.1. </table>
4.2.1.3. Self-Closing Tags
4.2.1.3.1. <br/>
4.3. Elements
4.3.1. An element is composed by an opening tag, a closing tag and the content between them. According this definition, inside an element could be nested even other elements
4.3.1.1. Start Tags
4.3.1.1.1. <h1>
4.3.1.2. Content
4.3.1.2.1. Mind Map
4.3.1.3. End Tags
4.3.1.3.1. </h1>
4.4. Entities
4.4.1. An entity is used to insert special characters inside the HTML document. For example, if you want to insert the © symbol you have to write “©” or “©”
4.4.1.1. Result
4.4.1.1.1. €
4.4.1.2. Entities Name
4.4.1.2.1. €
4.4.1.3. Entities Number
4.4.1.3.1. €
4.5. Comments
4.5.1. A comment, as also the other languages, are used by the programmer to insert information for programmer purpose
4.5.1.1. Start Simbols
4.5.1.1.1. <!--
4.5.1.2. Content not Displayed
4.5.1.2.1. Mappa Concettuale
4.5.1.3. End Simbols
4.5.1.3.1. --!>