Module-1-1 Hypertext markup Language .pptx

catliegay 21 views 9 slides Aug 15, 2024
Slide 1
Slide 1 of 9
Slide 1
1
Slide 2
2
Slide 3
3
Slide 4
4
Slide 5
5
Slide 6
6
Slide 7
7
Slide 8
8
Slide 9
9

About This Presentation

HTML


Slide Content

Hyper-Text Markup Language (HTML) Phillip Lance Mijares Instructor

HTML A computer language devised to allow website creation. published in 1995 as HTML 2.0. HTML 4.01 was published in late 1999 and was a major version of HTML. HTML is a very evolving markup language and has evolved with various versions updating.

How it works? HTML consists of a series of short codes typed into a text-file by the site author these are the tags. Using a browser reads the file and translates the text into a visible form

Questions? What is HTML? What is Hypertext? What is tag(s)?

Terminologies Hyper-Text is the method by which you move around on the web by clicking on special text called hyperlinks which bring you to the next page. Markup is what HTML tags do to the text inside them. HTML is a Language, as it has code-words and syntax like any other language.

Important Terms and Concepts What are the tags up to? The tags are what separate normal text from HTML code. It allows all the cool stuff like images and tables and stuff, just by telling your browser what to render on the page What can we do on the Web? Browse/Surf Web pages of people and organizations around the world in full text and graphics.

Important Terms and Concepts HTML TAGS HTML tags are keywords (tag names) surrounded by angle brackets. HTML documents are described by HTML tags <!DOCTYPE> Defines the document type <html> Defines an HTML document <title> Defines a title for the document <body> Defines the document's body <h1> to <h6> Defines HTML headings The first tag in a pair is the start tag, the second tag is the end tag The end tag is written like the start tag, but with a slash before the tag name

Important Terms and Concepts Web browsers in HTML The purpose of web browser is to read and display the HTML documents How to save HTML file? The file extension in saving HTML file is .HTML. The <!DOCTYPE> declaration The <!DOCTYPE> declaration helps the browser to display a web page correctly. There are different document types on the web. To display a document correctly, the browser must know both type and version. The doctype declaration is not case sensitive All cases are acceptable

TO SUM UP Since making websites became more popular and needs increased many other supporting languages have been created to allow new stuff to happen. (CSS) Cascading Style Sheet(s) are used to control how your pages are presented, and make pages more accessible. Most of this advanced stuff is for later down the road, but when using all of these technologies together, you have a lot of power at your disposal.
Tags