Lecture 8. HTML. Author: Aleksey Semyonov

Slides:



Advertisements
Similar presentations
HTML5, OVERVIEW AND NEW FEATURES PowerPoint by Mason O’Mara.
Advertisements

Getting a Taste of Cascading Stylesheets Steve Mooradian December 14, 2005.
 A markup language  Structures content on the internet  Commonly used by web browsers.
Tim Berners-Lee authors HTML in 1991, assisted by his colleagues at CERN,
Developing a Basic Web Page Posting Files on UMBC
CS 415 N-Tier Application Development By Umair Ashraf July 16,2013 National University of Computer and Emerging Sciences Lecture # 12 HTML/ XHTML/ HTML5.
Introduction to HTML. What is a Web site? A collection of "pages" or files linked together and available on the World Wide Web What do you need to create.
Using HTML to Create a Basic Web Page… By Josh Gallagan.
Using HTML to Create a Basic Web Page… By Josh Gallagan.
HTML Structure & syntax
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
Introduction to CS520/CS596_026 Lecture One Gordon Tian Fall 2015.
HTML CSS JAVASCRIPT. HTML - Stands for Hyper Text Markup Language HTML is a ‘language’ that describes web pages. This language is a collection of codes.
XHTML and CSS Session 1 Intro, (X)HTML, CSS, W3C, browsers, webpage, structure, tags, attributes, elements, web development process, basic XHTML elements.
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Lecture 2 - HTML and CSS Review SFDV3011 – Advanced Web Development 1.
HTML file format  Lesson Objective: Understanding HTML and how it is used to create web pages.  Learning Outcome:  Create a HTML page by interpreting.
INT222 - Internet Fundamentals Shi, Yue (Sunny) Office: T2095 SENECA COLLEGE.
Web Technologies Lecture 2 HTML and CSS. HTML Hyper Text Markup Language – Describes web documents – Made up of nested HTML markup tags – Tags are the.
HTML A brief introduction HTML1. HTML, what is? HTML is a markup language for describing web documents (web pages). HTML stands for Hyper Text Markup.
Copyright © 2004 ProsoftTraining, All Rights Reserved. Lesson 2: Markup Language and Site Development Essentials © 2007 Prosoft Learning Corporation All.
University of South Asia Course Name: Web Application Prepared By: Md Rezaul Huda Reza
WEB DESIGN Presentated By Amit Kapri Contact No
Introduction to CS520/CS596_026 Lecture One Gordon Tian Fall 2015.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
HTML Structure & syntax
Basic HTML Introduction to HTML.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Fall 2016 CSULA Saloni Chacha
LECTURE 1 (ETCS-308) Subject teacher : Ms. Gunjan Beniwal
Introduction to HTML CSC 102 Lecture 5.
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Web Basics: HTML/CSS/JavaScript What are they?
Creating a Web Page CSC 121.
Transcriptions Studio Workshop Fall 2006
HyperText Markup Language
Lecturer (Dept. of Computer Science)
4.01B Authoring Languages and Web Authoring Software
Introduction to HTML.
Mansoor Ahmed Bughio.
Lecture 9. Cascading Style Sheets
HTML5 – Heading, Paragraph
CIIT-Human Computer Interaction-CSC456-Fall-2015-Mr
The Internet and HTML Code
Cascading Style Sheets (CSS)
3.02B Authoring Languages 3.02 Develop webpages..
Introduction to XHTML.
Introduction to HTML 5.
Internet Programming.
Prepared for Md. Zakir Hossain Lecturer, CSE, DUET Prepared by Miton Chandra Datta
4.01B Authoring Languages and Web Authoring Software
HTML A brief introduction HTML.
HTML HYPERTEXT MARKUP LANGUAGE.
3.02B Authoring Languages 3.02 Develop webpages..
HTML 12/27/2018.
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
Mozafar Bag-Mohammadi
Ground to Roof HTML/HTML5
Introduction to HTML.
HTML Basic Structure.
HTML What is Html? HTML stands for Hypertext Markup Language.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
HTML / CSS Mai Moustafa Senior Web Designer eSpace eSpace.
Web Application Development
WEB & HTML Background Info.
CIS 133 mashup Javascript, jQuery and XML
HTML Structure & syntax
Creating your website and learning HTML
4.01 How Web Pages Work.
Presentation transcript:

Lecture 8. HTML. Author: Aleksey Semyonov Keywords: Web standards, Hypertext, markup, web pages, HTML, tags, attributes Lecture 8. HTML. Author: Aleksey Semyonov

What are web standards? What is HTML? Understanding HTML Using HTML Lecture plan Plan What are web standards? What is HTML? Understanding HTML Using HTML Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

What is W3C? Plan The World Wide Web Consortium (W3C) is an international community that develops open standards to ensure the long-term growth of the Web. Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

What are web standards HTML – Hyper Text Mark Up Language CSS – Cascading Style Sheet JS – JavaScript DOM – Document Object Model Etc. https://www.w3.org/TR/#w3c_all Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

Where to learn about web standards? Plan Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

What is HTML? Plan HTML is the standard markup language used to create web pages and its elements form the building blocks of all websites. Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

HTML History Plan Web Standards and HTML Understanding HTML Using HTML Year Version 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 Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

Mark up? vs. Plan Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

Mark up? vs. Plan Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

What is HTML all about? TEXT and HYPERLINKS Plan Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

How to understand HTML? Plan <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> </body> </html> Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

How to understand HTML? Plan Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

How to understand HTML? Plan Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

How to use HTML? Text Editors Web development software Email Plan Text Editors Web development software Email Content Management Systems Etc. Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

How to use HTML? Text Editors Plan Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

Web development software How to use HTML? Plan Web development software Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

Content management systems How to use HTML? Plan Content management systems Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

Reading https://www.w3schools.com/html/default.asp Plan https://www.w3schools.com/html/default.asp http://www.yourhtmlsource.com/starthere/whatishtml.html Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov

References Plan Road markup: http://www.istockphoto.com/search/more-like-this/494122976?excludenudity=true&mediatype=illustration&sort=best Road markup 2: www.podrobno.uz HTML 5: https://www.w3.org/html/ HTML history: https://www.w3schools.com/html/html5_intro.asp Web Standards and HTML Understanding HTML Using HTML Reading and References Lecture 8. HTML. Author: Aleksey Semyonov