The language of the internet

Slides:



Advertisements
Similar presentations
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;
Advertisements

Basics of HTML. Example Code Hello World Hello World This is a web page.
WEB DESIGN This course accompanies: -DiDA -GCSE ICT -A-Level ICT Insert Teacher Name Here By xIslandDesign.
Web Design Using HTML Codes. WHAT DO I NEED TO BEGIN DESIGNING A HOME PAGE? 1.YOU NEED A FOLDER (also called a DIRECTORY) You should set up a folder or.
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.
HTML CRASH COURSE. What is HTML?  Hyper Text Markup Language  The language used to make web pages  Written by using 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.
Computing Theory: HTML Year 11. Lesson Objective You will: o Be able to define what HTML is - ALL o Be able to write HTML code to create your own web.
Web Programming Basics of HTML. HTML stands for Hyper Text Mark-up Language A mark-up language is different than those that you have learned before in.
15.1 Fundamentals of HTML.
HTML Hyper Text Markup Language. What is an HTML File?  HTML stands for Hyper Text Markup Language  An HTML file is a text file containing small markup.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
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
HTML Codes Miss B.
McLean HIGHER COMPUTER NETWORKING Lesson 5 HTML Description of HTML web page Creating a simple HTML web page.
Introducing the World Wide Web Internet- a structure made up of millions of interconnected computers whose users communicate with each other and share.
15.1 Fundamentals of HTML DeKalb County School System.
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 & CSS BasicsHTMLCSSQuizAnswers  The logo In this website(made of html and css Codes), you will learn some basics of How to use HTML and CSS codes.
Web Authoring with Dreamweaver. Unit Objectives  Be able to define keywords: HTML, HTTP (protocol), browser, web server, client/server, tag, attribute,
This shows CIS17 and the first day introduction..
Getting Started with HTML. HTML  Hyper Text Markup Language  HTML isn’t a program language, its known as a markup language  A Markup language has tags.
Notes Test #2 will be held one week from this Thursday Check to see if you have a Vision account –Launch Netscape –Point & Click to location and type vision.
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-I Basic HTML Elements. HTML (Hyper Text Markup Language) HTML is a document layout and hyperlink- specification language. i.e. a language used to.
Step 1: Starting an HTML Document: Right Click: new>text document.
Introduction lab1. Suzanne J. Sultan 2 What is HTML? The definition of HTML is Hyper Text Markup Language. HTML is a computer language devised to allow.
HTML HTML stands for Hyper Text Markup Language. HTML is used in making the base of a Website You can just use an online website maker like weebly.com.
HTML Basic Structure. Page Title My First Heading My first paragraph.
HTML. Hyper Text Markup Language Markup your text document The markup is the tag Hyper text means you can jump from place to place Programming language.
The Internet and WWW. This term we shall be learning more about the Internet and World Wide Web and their benefits and uses. We shall also be learning.
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.
U NIT 9 Level 2 Web Design. What does HTML stand for? HTML stands for Hypertext Markup Language and it is the language used by all web pages. It consists.
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.
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.
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.
ECS – Storyboarding and Introduction to Web Design
Pertemuan 1 Desain web Pertemuan 1
Online PD Basic HTML The Magic Of Web Pages
Introduction to HTML.
Prepared by Dr. Maher Abuhamdeh 2014/2015 First semester
Web Basics: HTML/CSS/JavaScript What are they?
Internet Exploration: HTML Basics
Mansoor Ahmed Bughio.
Uppingham Community College
WEB PAGES: CREATING AND MAINTAINING **
Basic HTML PowerPoint How Hyper Text Markup Language Works
INSTRUCTIONS This presentation was designed to first be viewed in class with the instructor. Students may then view it on their workstations while trying.
The Internet and HTML Code
Internet Exploration: HTML Basics
HTML.
Basic HTML PowerPoint How Hyper Text Markup Language Works
Web Design and Development
HTML 12/27/2018.
Making Web pages.
Intro to Web Development Links
Web pages Lesson 3.
Web pages Lesson 4.
What is HTML?.
Introduction to HTML5.
HTML Basic Structure.
Task: Have a look at these websites:
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Web Application Development
Creating your first website
The language of the internet
15.1 Fundamentals of HTML 2 assignments: 1—complete the worksheet
HTML Introduction.
HTTP and HTML HTML HTTP HTTP – Standardize the packaging
Presentation transcript:

The language of the internet HTML The language of the internet

What is HTML? Every page on the internet is created using HTML. HTML stands for Hyper Text Mark-up Language and it is the language of the internet. Don’t believe me? Test it for yourself – Go onto any website and click on: Page > View Source

Example

So how does it work? HTML uses tags. The tags tell the computer where all the different information should go and what it should look like

What do the tags look like? Web sites are broken down into 3 main parts – The Head The Body The Footer Each of these parts has its own Tag: <head> <body> <footer> These tags can be used to tell the computer where on the page to display content

So how do I make a page? To create your own page you will need to write some HTML code. You will probable write something that looks like this: <html>   <head>     <title>First Effort</title>   </head>   <body>     <h1>My First Web Page</h1>   </body> </html> Tells the computer it’s a web page The title bar The main part of the page The end of the page

What does it look like? Title bar Body The code on the last page would make a very basic website that looks like this

Your task Your task for today is to work through a series of examples I have put together for you and create your own simple web pages.