The Building Blocks of the web
There is not website without HTML. Learn HTML and build websites and web applications
# 30 Days Of HTML - [30 Days Of HTML](#30-days-of-html) - [Terminologies](#terminologies) - [Day 1](#day-1) - [Introduction](#introduction) - [Requirements](#requirements) - [Web Development](#web-development) - [Frontend Web Development](#frontend-web-development) - [Backend Web Development](#backend-web-development) - [Full-stack Web Development](#full-stack-web-development) - [How the Web Works](#how-the-web-works) - [Web Development Tools](#web-development-tools) - [Parts of a website](#parts-of-a-website) - [Exercises](#exercises) - [Day - 2](#day---2) - [Setting Development Environment](#setting-development-environment) - [Browser](#browser) - [Code Editor](#code-editor) - [How to use Visual Studio Code](#how-to-use-visual-studio-code) - [Introductin to HTML](#introductin-to-html) - [History of HTML](#history-of-html) - [What is HTML?](#what-is-html) - [HTML Element](#html-element) - [Attribute](#attribute) - [HTML Comment](#html-comment) - [Exercise](#exercise) - [Day 3](#day-3) - [DOM](#dom) - [Declaration](#declaration) - [Root Element](#root-element) - [Heading Elements](#heading-elements) - [Paragraph Element](#paragraph-element) - [Section Element](#section-element) - [Header Section](#header-section) - [Main Section](#main-section) - [Footer Section](#footer-section) - [Inline Style](#inline-style) - [Exercise](#exercise-1) - [Day 4](#day-4) - [Blocking and Non-blocking Elements](#blocking-and-non-blocking-elements) - [Exercises](#exercises-1) - [Day 5](#day-5) - [HTML5 Formatting Elements](#html5-formatting-elements) - [Exercises](#exercises-2) - [Day 6](#day-6) - [HTML5 Semantic Elements](#html5-semantic-elements) - [Day 7](#day-7) - [HTML Form](#html-form) - [Day 8](#day-8) - [Meta tags](#meta-tags) - [Day 9](#day-9) - [HTML Table](#html-table) - [Day 10](#day-10) - [Lists](#lists) - [Day 11](#day-11) - [File Paths](#file-paths) | # Day | Topics | | ----- | :----------------------------: | | 01 | [Introduction](./readMemd) | | 02 | [DOM(Document Object Model)]() | | 03 | []() | | 04 | []() | 🧡🧡🧡 HAPPY CODING 🧡🧡🧡
[Day 2 >>](./) ![30 Days Of HTML](./images/DAY_1.png) ## Terminologies Some of the terminologies you may come across in this challenge: _client_, _server_, _web developer_, _web designer_, _UI_, _UX_, _web development_, _browser_, _code editor_, _command lines_, _Git_, _GitHub_, _Version Control_, _semantic_, _accessibility_, _responsiveness_, _compatibility_, _request_, _response_, _HTML_, _CSS_, _JavaScript_, _viewport_, _blocking element_, _non-blocking element_, _tag_, _opening tag_, _closing tag_, _self closing tag_, _attribute_, _style_, _script_, _property_, _value_, _render_, _comment_, _HTTP_, _path_, _URL_, _absolute path_, _relative path_, _landing page_, _single page application_, _hero image_, _HTML element_, _content_, _SEO_, _feature image_, _carousel_, _sidebar_, _website_, _web application_ # Day 1 ## Introduction Congratulations on deciding to participate in 30 days of HTML challenge. In this challenge you will learn everything you need to know about HTML, and in general, the foundation of web development. In the end of the challenge, you will get a 30DaysOfHTML challenge completion certificate. In case you need help or if you would like to help others you may join the [telegram group](https://t.me/ThirtyDaysOfHTML). A 30DaysOfHTML challenge is a complete guide for both beginners and advanced developers. Welcome to 30DaysOfHTM! HTML is the build-block of the web. There is no website without HTML, therefore, to develop a website it requires an HTML. In this step by step HTML challenge, you will learn HTML, the standard markup language for the web. HTML is used to build the skeleton or outline of any website. The skeleton or outline of the website is styled(beautified) by CSS(Cascading Style Sheet). JavaScript (JS) can make a website interactive and dynamic. HTML, CSS and JS are the core technologies to build websites and these are the skills required to be a web developer. This challenge will focus on HTML but we will use little CSS to make some HTML concepts more clear to the readers. A 30DaysOfCSS will be a follow up challenge after 30DaysOfHTML. There are [30 Days of JavaScript](https://github.com/Asabeneh/30-Days-Of-JavaScript), [30 Days of React](https://github.com/Asabeneh/30-Days-Of-React), and [30 Days of Python](https://github.com/Asabeneh/30-Days-Of-Python) by the same author. Look at the following picture to understand the purpose of HTML, CSS and JavaScript very well. ![htl css js](./images/html-css-js.png) The image has been taken from medium article, [source](https://medium.com/@readizo.com/html-basics-the-10-important-concepts-afeedcbe8e7d). By the end of the challenge: - You will have a clear understanding of how the web works - You will be able to develop a modest static website with HTML and little CSS - You will know what to do next to become a web developer The main goal of this challenge is to teach the core building block of the web that is HTML. Therefore, let's get started by understanding some the terminologies in this field such as _web development_, _front end development_, _back end development_, and _full-stack_. ⚠️ This is not a proof read material. You may find typo, grammar and some technical errors here and there. The content will be updated now and then. Therefore, do not be surprised you find a typo or a grammar or other mistakes. ## Requirements The minimum requirement to follow this challenge: - Motivation - Computer - Internet ## Web Development Web development is a process of designing, building, testing, and maintaining a website which ranges from a simple single page static website to a complex full-stack applications. This field has two broad categories. - Frontend - Backend ### Frontend Web Development A front end(client-side) is a website that a user can see and interact with. It can be also called a client-side because it is the part that the user(client) can see and interact with. Therefore, anything we see on any website when we surf on the internet is part of the front end and it includes the colors, fonts, buttons, images, videos, audios and any other content on the website. The technologies that uses to build front end parts of a website are called front end technologies. The core technologies to build a front end are: - HTML - CSS - JavaScript There are hundreds of JavaScript that allows building a dynamic web applications. Currently, the three most popular JavaScript libraries are: - React - Vue - Angular Do not learn learn JavaScript before, HTML and CSS. Do not learn JavaScript libraries before you learn JavaScript. This the right sequence of learning:HTML > CSS > JavaScript > React or Vue or Angular. ### Backend Web Development Backed(Server-side) development refers to the activities that happens behind the scene. Backend development consists of backend a programming language and a database. The backend interacts with frontend and the database using a backend programming language that could be (Node.js, Python, Ruby, PHP, etc). Look at the following figure to understand the interaction between client. A client send a HTTP request to the backend and the backend return a HTTP response to the client computer(The response could be an HTML page, txt, image, or any other form of data). HTTP(Hypertext Transfer Protocol) is a communication protocol that allow transmitting data between a client and a sever. It is designed for communication between web browsers(client) and web servers. ![](images/request-response.png) ### Full-stack Web Development Full-stack is another buzzword that no one agrees on the definition. You can understand Full-stack web development as a sum of frontend, backend, testing, and including some other technologies. I believe now you have a big picture of web development. ## How the Web Works By now you should have clear understanding how the web works based on the information you get on the above two sections. If you want to know more you may also read this [article](https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/How_the_Web_works). ## Web Development Tools Tools you need as a web developer - Motivation - Computer - Internet: To access information or resources - Browser: allows to render HTML code to a human readable output(website pages). Examples of browsers(Chrome, Firefox, IE, Safari, Opera, Brave, etc) - Design Software: allow to create a design or a prototype of the website. Examples of (Figma, Adobe XD, etc) - Code Editor: allows to write code. For example(Visual Studio Code, Atom, Sublime Text, Bracket, etc) - Git(Version Control Software): allows to manage different version of our code Before we start developing a website, it is good to recall the common parts(components) of a website. In the next section, we will cover this. ## Parts of a website A website can have a couple of features or several features. There is no guideline that tells what a website should have but most of the time a website has the following common parts(components). For instance, if you look at the [first ever created website](http://info.cern.ch/hypertext/WWW/TheProject.html), it has just one page and several links. However, since 1993 to today, for the last three decades HTML has been evolving and with only HTML it is possible to develop a decent static website. Let's see the most common parts(components) of a website: - Website Logo - Header/Banner - Navigation Bar/Menu Bar - Carousel - Sections - Forms - Buttons - Links - Images - Videos - Audios - Social Links - Footer If you agree that these are components of a website, then you will create these components to build a website. Actually, once you create a certain feature it can be used in different projects(reusable). Therefore, whenever you create a certain part try to consider maintainability and reusability. You don't have to have all the mentioned above features when you develop a website. There is no strict guidelines what to have on your website. ## Exercises 1. What is web development? 2. What is frontend? 3. Mention at least four frontend technologies 4. What is backend? 5. Mention at least four backend technologies 6. What is full-stack 7. What is client? 8. What is server 9. What is HTTP? 10. What is HTTP request ? 11. What is HTTP response? 12. What are the necessary tools for a web development? 13. Mention parts of a website 14. What is the purpose of HTML 15. What is the purpose of CSS? 16. What is the purpose of JavaScript 17. Is it possible to develop using only HTML? 18. Is there any strict guidelines what a website should look like? 19. What are Git and GitHub? Did you install Git? Do you have GitHub account? 20. Do you need a prototype or mockup or a wireframe before you start building the website? 21. First open this [website](http://info.cern.ch/hypertext/WWW/TheProject.html), then right click on the page then click source, after that you will get an HTML source code. Count the number of the different HTML tag that have been used on this site. # Day - 2 ## Setting Development Environment ### Browser There are many browsers out there but most developers prefer to use Google Chrome or FireFox. I usually use Google chrome for development and I recommend it too. [Download](https://www.google.com/chrome/) Google Chrome if you do not have one. The browser render your HTML code to a human read website. ### Code Editor As web developer, you should write code using a text or code editor. Therefore, to write HTML code, CSS, JS, React or other you need to have a code edit. I will use Visual studio code and I will use it in this challenge too. I strongly suggest to use Visual Studio Code because it has lots of productivity extensions that makes super productive. Now, let's [download](https://code.visualstudio.com/) visual studio code. ### How to use Visual Studio Code ## Introductin to HTML ### History of HTML The initial release of HTML was 1993. The first version of HTML was written by Tim Berners-Lee in 1993. HTML has been evolving for the last three decades and the now the latest version is HTML5. ### What is HTML? The word HTML is an acronym. That is stands for Hypertext Markup Language. It is the standard markup languages to develop websites. HTML is the build block of the web that allows building layouts of page using HTML elements. HTML is not not a programming language instead it is a markup language. HTML code will be rendered by a browser and it give a human readable output. Look at the figure bellow to understand better how the HTML code convert to a website using a browser. ![](images/html_code_output.png) ### HTML Element HTML elements consists of an open tag(<>), attribute(s), content and closing tag(<>). Look at the figure below to understand a syntax of an HTML element. ![Open and Close tag without attribute](./images/tag.png) ```htmlHTML elements are the blocking of a website. There is not website without HTML. Learn HTML and build a website.
``` The _p_ tag marks the text to be paragraph that why we call HTML a markup language. ### Attribute HTML attributes provide additional information about the element. An attribute can added only in the opening tag. It will be difficult to list down all HTML attributes but we can list down the most common ones. - alt - to add information about added image, use with _img_ element. - autocompelete - to enable auto complete feature of a form, use with form and input. - autofocus - enable auto focus of input fields - autoplay - allows playing an audio/video on the page loads - charset - enable character encoding of meta tag - checked - to make a checkbox checked of an input element - class - to give a common identifier for HTML elements - cols - to determine the width of a textarea element - contenteditable - make any element editable - download - allows a link to download a resource(image, pdf, PPT, etc) - draggable - to make an element draggable, apply to all elements - for - to connect/bound a label element with a specific input field, use with a label tag - href - to specify a URL or a path of a resource, use with a link tag - id - a unique id for an HTML element, apply to all elements - lang - specifies the language of the page - type - specifies the type of the element and it uses with only a certain elements - src - to specify URL of a media file(img, audio, video, source, embed, script) - style - to add an inline CSS style to an element There are also event listener attribute that listen mouse or keyboard. For instance, onclick, onsubmit, onkeydown, onkeyup, onscroll, etc. Remember, do not try to remember by hard. For detail information about, HTML attributes you may check this [link](https://www.w3schools.com/tags/ref_attributes.asp) ![Open and Close tag](./images/opening-closing-tag.png) An attribute is optional in an HTML element. See the following h1 tag with an id attribute value of _first-title_. ```htmlHTML elements are the blocking of a website. There is not website without HTML. Learn HTML and build a website.
``` The above _p_ tag has a style attribute. The style attribute has a color property and a value gray. The style changes the text color to gray. You can try it by adding other property and value in the style. Each value has to be separated by a semicolon. Some HTML elements do not have closing tag, instead they have self-closing tag. ![Self Closing Tags](./images/self-closing-tag.png) An example of self closing tags: ```htmlThere is not website without HTML. Learn HTML and build websites and web applications
``` Now, there are six elements in the above HTML code. An HTML element may have a parent, a child, sibling(s). The _html_ element is the root or the parent of the _head_ and _body_. The _head_ and _body_ are children of the _html_ tag.The _head_ and _body_ are siblings. The _title_ is the child of the _head_. The body has two children, the h1 and p. ### Section Element If we went to create section for our page, we can use div or section element. Section element has semantic meaning. Let's add div in the previous page. ```htmlThere is not website without HTML. Learn HTML and build websites and web applications
There is not website without HTML. Learn HTML and build websites and web applications
There is not website without HTML. Learn HTML and build websites and web applications
There is not website without HTML. Learn HTML and build websites and web applications
There is not website without HTML. Learn HTML and build websites and web applications
There is not website without HTML. Learn HTML and build websites and web applications
There is not website without HTML. Learn HTML and build websites and web applications
There is not website without HTML. Learn HTML and build websites and web applications
There is not website without HTML. Learn HTML and build websites and web applications