Introduction to HTML:.

Slides:



Advertisements
Similar presentations
HTML Basics Customizing your site using the basics of HTML.
Advertisements

WeB application development
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML Lesson 1 TBE 540 Farah Fisher. Prerequisites Before beginning this lesson, the student must be able to… Access web pages and navigate the web Access.
HTML Basics An Introduction to HTML. What is HTML? Stands for “Hyper Text Markup Language” Composed of “tags” which are surrounded by sideways triangles.
Tags through Forms. This element is required for all HTML pages It must be at the top of every page of every website We’ll see later on why it is important.
Web Site Design Unit 11.3A: Web programming. Starter Activity O In pairs, name the 5 most things to think about when designing a website O You have 1.
HTML. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
1 Essential HTML coding By Fadi Safieddine (Week 2)
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
Introduction to HTML. What is a HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup tags  The.
Computer Information Technology – Section 3-4. HTML – The Language of the Internet Objectives: The Student will: 1. Look at HTML 2. Understand the basic.
Basic HTML PowerPoint How Hyper Text Markup Language Works.
INTRODUCTION. What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language,
HTML Structure & syntax. Introduction This presentation introduces the following: Doctype declaration HTML Tags, Elements and Attributes Sections of a.
Ali Alshowaish. What is HTML? HTML stands for Hyper Text Markup Language Specifically created to make World Wide Web pages Web authoring software language.
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.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
HTML Review * is used as a reference for most of the notes in this powerpoint.
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
HTML. HTML: What is it? – HTML stands for Hyper Text Markup Language – An HTML file is a text file containing small markup tags – The markup tags tell.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Tutorial #1 Using HTML to Create Web Pages. HTML, XHTML, and CSS HTML – HyperText Markup Language The tags the browser uses to define the content of the.
Chapter 4 HTML Tags. HTML is written in something called tags. Tags come in pairs, an opening one and a closing one. The first pair of tags we'll write.
HTML 17 HTML 17. HTML 17 HTML is the language for making webpages Hypertext Markup Language You need to know the basics Questions about HTML are common.
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.
Web Site Design Unit 11.3A: Web programming. Tags and Elements O h1 O p O h6 O li O Ol O Ul O Strong O Bold O Emphasis O Sub O Sup O How many standard.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
Prepared by Sana Maqbool. Objectives After completing this lesson, the you will be able to… Understand about web authoring Name and explain the uses of.
Week 1: Introduction to HTML and Web Design
What you can see in the picture?
Online PD Basic HTML The Magic Of Web Pages
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
HTML – The COMPUTING UNLOCKED GUIDE
Section 4.1 Section 4.2 Format HTML tags Identify HTML guidelines
Introduction to basic HTML
Elements of HTML Web Design – Sec 3-2
Elements of HTML Web Design – Sec 3-2
HTML & teh internets.
Intro to HTML Mr. Singh.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Computer Concepts I and II Sue Norris
Chapter 1: Introduction to XHTML (part 1)
WDV 101 Intro to Website Development
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Elements of HTML Web Design – Sec 3-2
Working with HTML These are the examples you need to go over. Click on the name like HTML5intro.html and it will bring up the page. If you right click.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Web Design and Development
HTML ELEMENTS Ms. Olifer.
Web Programming Language
Introduction to HTML- Basics
Intro to Web Development Links
Secure Web Programming
Introduction to HTML5.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Chapter 16 The World Wide Web.
HTML Structure.
Web Application Development
Computer communications
HTML – The COMPUTING UNLOCKED GUIDE
Pertemuan 1 Desain web Pertemuan 1
The Most Basic HTML Page
Lesson 2: HTML5 Coding.
WJEC GCSE Computer Science
Web Programming and Design
Presentation transcript:

Introduction to HTML:

Anatomy of a Website: All websites are made up of HTML files. HTML stands for HyberText Markup Language Websites are made up of other files too but we’ll get into those later. When you visit a website, the servers that you are connecting to will send you various files including an HTML file that your browser (chrome, firefox, etc.) will use to display the webpage you are trying to visit. You can view the HTML code of any website you visit since the file is sent to your computer. In Chrome, you can view the HTML code by right clicking and then selecting inspect.

HTML Code:

HTML Tags: An HTML file is a text file containing small markup tags. The tags tell the Web browser how to display the page An HTML file can be created by using a simple text editor. You will create HTML files using Notepad++ You can name HTML files whatever you want, you just need to make sure that the file name ends in .html

Anatomy of an HTML tag: Each tag has a “start tag”, “end tag”, some content in between, an optional attributes. Think of a tag as a “command” to the browser and of the attributes as modifiers of that command.

HTML Basics: The doctype isn’t an actual tag, but it needs to be at start at every HTML page to tell the browser which version of HTML you’re using (HTML5, in example below). The html tag is always the first tag in the page.

HTML Head & Body: The head contains “meta” information about the page, information that the browser needs before rendering it. The body contains the actual content of the page Most of the HTML code you will write will be contained within the body tag

HTML Tags: Header Tag: Acts as a header for information <h1> Biggest Header </h1> <h6> Smallest Header </h6> Paragraph Tag: Tag used to create paragraphs <p> The text within is a paragraph </p> Line Breaks: This tag has no corresponding end tag. It is used to create line breaks between content within paragraph tags.

HTML Tags Continued: You can also create lists with HTML. There are different types of lists you can use in HTML. Below is an example of one type of list. There are unordered lists <ul> <li> Item 1 </li> </ul> There are also ordered lists <ol> <li> Item 1 <li> </ol> Check out the differences on your own

HTML Tags Continued: For emphasized or italicized text use the em tag <em> Emphasized info </em> For important or bolded text you can use the strong tag <strong> Important Info! </strong> To places images in your HTML file you need to use the img tag and the src attribute.

HTML Links and Nesting: To create a link you need to use the a tag and the href attribute to determine which website the content will visit. <a href=“http://www.google.com”> Click this text and go to google </a> If you want to click an image to go to a particular website you can place an image tag within an a tag. Look at the example below.

HTML Resources: Sometimes a browser will be able to render HTML code even if there are errors or mistakes within the code. Don’t make a habit of counting on the browser to fix your code When you’re on your own and trying to code HTML, do a search for the tag you’re using (“img tag” or “li tag”) and you will usually find good references at the top. W3Schools is a simple to read reference with interactive examples & will often be the top result. The W3Schools HTML reference link is below: https://www.w3schools.com/tags/default.asp

HTML Assignment: Create a webpage that looks like the example to the right. Write the code for your HTML in notepad++ and make sure your file name ends in .html You can practice more HTML coding techniques on W3Schools.com