HTML 12/27/2018.

Slides:



Advertisements
Similar presentations
HTML Basics 1450 Technology Seminar Copyright 2003, Matthew Hottell.
Advertisements

HTML. The World Wide Web Protocols Addresses HTML.
Made by: Dan Ye. Introduction Basic Last Page ☆ HTML stands for Hyper Text Markup Language; ☆ HTML is not a programming language, it is a markup language;
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
1 What is HTML? Standardized codes Web pages SGML Descriptive markup Tags.
HTML Internet Basics & Beyond. What The Heck Is HTML? HTML is the language of web pages. In order to truly understand HTML, you need to know a little.
Web Design. How do web pages work? Webpages are written in a code called HTML. Programs like Internet Explorer read the code, and then show it as a web.
Introduction to HTML Year 8. What is HTML O Hyper Text Mark-up Language O The language that all the elements of a web page are written in. O It describes.
Web programming Part 1: HTML 由 NordriDesign 提供
Behind every site is a mix of special languages that your web browser understands The main way of describing any website is HTML HTML stands for Hyper.
HTML Basic Structure. Page Title My First Heading My first paragraph.
Creating Your 1 st Web Page. Tags Refers to anything between on a webpage Most appear in pairs surrounding content Some appear as empty tags (no closing.
HTML cancho. HTML HyperText Markup Language A set of HTML tags.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML Help book. HTML HTML is the programming language used to make web pages for the Internet. HTML stands for Hyper Text Markup Language. HTML is made.
Objectives At the end of this session students will: Define the following terms in two sentences or less Website Web page Browser Html URL Hyperlink Explain.
HTML Structure & syntax
HTML Structure & syntax
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Basic concepts of web design
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
Introduction to HTML.
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Web Basics: HTML/CSS/JavaScript What are they?
HTML – The COMPUTING UNLOCKED GUIDE
HTML basics
Internet Exploration: HTML Basics
HyperText Markup Language
Mansoor Ahmed Bughio.
HTML Lab 5 10/1/2015.
HTML5 – Heading, Paragraph
Concepts of HTML, CSS and Javascript
INTRODUCTION TO HTML AND CSS
Basic HTML PowerPoint How Hyper Text Markup Language Works
Lecture 8. HTML. Author: Aleksey Semyonov
Creating a webpage html coding
Internet Exploration: HTML Basics
HTML Robert McIntosh
Introduction to Web & HTML
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML HYPERTEXT MARKUP LANGUAGE.
Basic HTML and Embed Codes
Introduction to Web & HTML
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.
HTML What is it? HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet.
Intro to Web Development Links
INTRODUCTION TO HTML AND CSS
What is HTML?.
Introduction to HTML5.
HTML Basics Web.
Programming for webpages
Introduction to HTML.
Introduction to HTML 5.
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.
Web Application Development
WEB & HTML Background Info.
HTML – The COMPUTING UNLOCKED GUIDE
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
The language of the internet
The language of the internet
HTML Structure & syntax
Creating your website and learning HTML
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Presentation transcript:

HTML 12/27/2018

HTML stands for Hypertext Markup Language, and it is the most widely used language to write Web Pages. Hypertext refers to the way in which Web pages (HTML documents) are linked together. Thus the link available on a webpage are called Hypertext. As its name suggests, HTML is a Markup Language which means you use HTML to simply "mark up" a text document with tags that tell a Web browser how to structure it to display. 12/27/2018

<!DOCTYPE html> <html> <head> <title>This is document title</title> </head> <body> <h1>This is a heading</h1> <p>Document content goes here.....</p> </body> </html> 12/27/2018

12/27/2018

Heading Tags 12/27/2018

12/27/2018

Line Break Tag Whenever you use the <br /> element, anything following it starts from the next line. 12/27/2018

12/27/2018

12/27/2018

Comment Tag 12/27/2018

Image 12/27/2018

Font 12/27/2018

12/27/2018