HTML Basic Structure.

Slides:



Advertisements
Similar presentations
Hyper Text Markup Language.  HTML is a language for describing web pages.  HTML stands for Hyper Text Markup Language  HTML is not a programming language,
Advertisements

MASTERY OBJECTIVE: Learn parts of an html document Learn basic html tags HTML-An Introduction.
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;
HTML syntax By Ana Drinceanu. Definition: Syntax refers to the spelling and grammar of a programming language. Computers are inflexible machines that.
Tutorial 1: Getting Started with HTML5
Define html document byusing Example : Title of the document The content of the document......
 XHTML is aimed to replace HTML  XHTML is almost identical to HTML 4.01  XHTML is a stricter and cleaner version of HTML  XHTML is HTML defined as.
HTML Structure & syntax
Web Pages: Creating & Maintaining Body Tags. There have been several versions of HTML since its inception. VersionYear HTML1991 HTML HTML
All Web pages are written with some form of HTML (HyperText Markup Language). HTML documents are saved as Text Only files so virtually any computer can.
HTML Tags Basic Tags Doctype or HTML Head Title Body Use the website to find the definitions
HTML. WHAT IS HTML HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language is a set of.
Introduction to HTML. HTML Hyper Text Markup Language Page Title My First Heading My first paragraph. Page Title My First Heading My first paragraph.
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.
Basic HTML PowerPoint How Hyper Text Markup Language Works
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
HTML Basic. What is HTML HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it.
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.
HTML NOTES October 6, Starting a document and saving  Always use notepad  Use _ for spaces otherwise it won’t work  When saving make sure you.
Step 1: Starting an HTML Document: Right Click: new>text document.
Basic Steps to create a Website using HTML5. Hypertext Markup Language.
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.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
HTML Structure & syntax
Basic HTML Introduction to HTML.
© 2016 Pearson Education, Inc., Hoboken, NJ. All rights reserved.
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
INTRO TO WEB DEVELOPMENT 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.
HTML.
CSS.
Concepts of HTML, CSS and Javascript
INTRODUCTION TO HTML AND CSS
CSE 3! By Emma Sasson CSE Online Webpage HTML WORD EXCEL ALICE
Web Development & Design Foundations with HTML5 8th Edition
Lecture 8. HTML. Author: Aleksey Semyonov
Internet Exploration: HTML Basics
Internet & Web Engineering Course Code:CS-228 Credit Hours (3+1) Lab 1 Introduction to Markup Language HTML Instructor: Muhammad Zeeshan Haider.
Digital Design – Copyright Law
5.2.3 Be able to use HTML and CSS to construct web pages
מבנה בסיסי של מסמך html מסמך ב- html מורכב מתגיות.
HTML HYPERTEXT MARKUP LANGUAGE.
Basic HTML and Embed Codes
HTML 12/27/2018.
INTRODUCTION TO HTML AND CSS
Introduction to HTML5.
Pertemuan 1b
HTML Structure.
Introduction to HTML Lecture 1 Kanida Sinmai
Web Application Development
HTML – The COMPUTING UNLOCKED GUIDE
Pertemuan 1 Desain web Pertemuan 1
The Most Basic HTML Page
The language of the internet
The language of the internet
Type your presentation title here
HTML Structure & syntax
Creating your website and learning HTML
HTML Introduction.
HTML Elements.
Presentation transcript:

HTML Basic Structure

<. DOCTYPE html> <html>. <head> <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading </h1> <p> My first paragraph.</p> </body> </html>

<body> Start or opening tag </body> End or closing tag

Example Explained The DOCTYPE declaration defines the document type to be HTML The text between <html> and </html>describes an HTML document The text between <head> and </head> provides information about the document The text between <title> and </title> provides a title for the document The text between <body> and </body> describes the visible page content The text between <h1> and </h1> describes a heading The text between <p> and </p> describes a paragraph