What is HTML?
HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language. HTML describes the structure of Web pages using markup and HTML elements are the building blocks of HTML pages. HTML elements are represented by tags and the HTML tags label pices of content such as 'heading', 'paragraph', and 'table' etc. Browsers do not display the HTML tags, but use them to render the content of the page.
HTML History
There has been many versions of HTML:
- 1989 - Tim Berners-Lee invented www
- 1991 - Tim Berners-Lee invented HTML
- 1993 - Dave Raggett drafted HTML+
- 1995 - HTML Working Group defined HTML 2.0
- 1997 - W3C Recommendation: HTML 3.2
- 1999 - W3C Recommendation: HTML 4.01
- 2000 - W3C Recommendation: XHTML 1.0
- 2008 - WHATWG HTML5 First Public Draft
- 2012 - WHATWG HTML5 Living Standard
- 2014 - W3C Recommendation: HTML5
- 2016 - W3C Candidate Recommendation: HTML 5.1
Examples of HTML
- <!DOCTYPE html> declaration defines this document to be HTML5
- <html> element is the root element of an HTML page
- <head> element contains meta information about the document
- <title> element specifies a title for the document
- <body> element contains the visible page content
- <h1> element defines a large heading
- <p> element defines a paragraph
CSS
What is CSS?
CSS stands for Cascading Style Sheets. CSS describes how HTML elements are to be displayed on screen, paper, or in other media. CSS saves a lot of work as it can control the layout of multiple webpages all at once. External stylesheets are stored in CSS files. CSS controls the shape, position and colour of HTML elements.
Examples of CSS
Bellow are screenshots taken from my experience with CSS:
CSS colour coding:
w3school is a website that helps its users with HTML and CSS coding. It provides examples of HTML and CSS codes and different ways of using them, giving clear and easy to understand instructions.
link to website: https://www.w3schools.com/html/


No comments:
Post a Comment