HTML – The COMPUTING UNLOCKED GUIDE

Slides:



Advertisements
Similar presentations
HTML I. HTML Hypertext mark-up language. Uses tags to identify elements of a page so that a browser such as Internet explorer can render the page on a.
Advertisements

Introduction to HTML CPS470 Software Engineering Fall 1998.
Web Workshop: CSS Objectives: - “What is CSS?” - Structure of CSS - How to use CSS in your webpage.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML syntax By Ana Drinceanu. Definition: Syntax refers to the spelling and grammar of a programming language. Computers are inflexible machines that.
Basics of HTML.
Today’s Topic Language of web page - HTML (Hypertext Markup Language)
CP2022 Multimedia Internet Communication1 HTML and Hypertext The workings of the web Lecture 7.
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.
XP 1 HTML Committed to Shaping the Next Generation of IT Experts. 01: Introduction to HTML.
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.
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
Creating Webpage Using HTML
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: Hyptertext Markup Language Doman’s Sections.
HTML GUIDE Press F5 and then Click on the links on the left to get to the section you want Section 1: Getting Started Section 2: Moving Banner Section.
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.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
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.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Source of website: “Text/css rel=“styles heet” This is an external style sheet link. This means that the.
HTML Structure & syntax
Week 1: Introduction to HTML and Web Design
HTML Structure & syntax
Basic concepts of web design
Getting Started with HTML
Fall 2016 CSULA Saloni Chacha
Introduction to HTML.
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Introduction to HTML:.
HTML – The COMPUTING UNLOCKED GUIDE
HTML basics
Internet Exploration: HTML Basics
XHTML/CSS Week 1.
Essential Tags Web Design – Sec 3-3
Mansoor Ahmed Bughio.
HTML.
Concepts of HTML, CSS and Javascript
INTRODUCTION TO HTML AND CSS
Key concepts of Computing
Basic HTML PowerPoint How Hyper Text Markup Language Works
Essential Tags Web Design – Sec 3-3
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Internet Exploration: HTML Basics
HTML Robert McIntosh
Basic HTML PowerPoint How Hyper Text Markup Language Works
Web Programming A different world! Three main languages/tools No Java
Computers and Scientific Thinking David Reed, Creighton University
Of HTML, CSS and JavaScript
Basic HTML and Embed Codes
HTML 12/27/2018.
Creating a web page Auxiliary Lab Lecture
INTRODUCTION TO HTML AND CSS
Introduction to HTML5.
HTML Structure.
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Computer communications
Basic HTML Workshop.
HTML & CSS 7 Languages in 7 Days.
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
The Most Basic HTML Page
Creating a web page.
HTML Structure & syntax
5.00 Apply procedures to organize content by using Dreamweaver. (22%)
WJEC GCSE Computer Science
Creating your website and learning HTML
Web Programming and Design
Presentation transcript:

HTML – The COMPUTING UNLOCKED GUIDE <!DOCTYPE html> <html> <head> <title>HTML-THE COMPUTING UNLOCKED GUIDE</title> </head> <body> </body> </html>

Learning objectives Understand what HTML is Learn about ‘tags’ Learn about tag attributes Create your first html project using the Trinket editor Understand the term Metadata Understand the relationship between CSS & HTML

What is html? Every webpage is written in html Web browsers read the html and transform it into a recognisable webpage Hypertext Markup Language (in case you were wondering!)

TAGS: Tags are the things which appear in brackets and form the crucial syntax of html – the tags are what your web browser reads and decodes to display your web page.

Essential Tags: Definition: <!DOCTYPE html> <html></html> Header: <head></head> Title: <title></title> Body: <body></title>

Basic Tags: Headings: <h1></h1> <h2></h2> <h3></h3> <h4></h4> <h5></h5> <h6></h6> Paragraphs: <p></p> Links: <a href="home.html"> My homepage </a> Images: <img src="photo.jpg"> Lists: <ul></ul> <ol></ol> <li></li>

Definition - <!DOCTYPE html> <html> </html> This basically defines the document as web page. It also identifies the beginning and end of the HTML document. All other tags must fall between the html tags. Header - <head> </head> The header contains information about the document that will not appear on the actual page, such as the title of the document, the author, which stylesheet to use and also meta tags.

Title - <title> </title> The title tag defines the title that will appear in the title bar of your web browser. The title must appear between the head tags. Body - <body> </body> The body tags contain all the information and other visible content on the page. All your images, links and plain text must go between the <body> and </body> tags.

Headings - <h1> A Heading </h1> ……<h6></h6> Use headings for titles and subtitles, and make some text stand out from others. See text formatting tags. Paragraphs - <p> Some text </p Most content on a simple web page will appear in paragraphs or sections Links - <a href="home.html"> My homepage </a> Links are necessary for users to jump from one page to another.

Images - <img src="photo.jpg“/> Image tags contain links to the source of an image rather than the content itself Lists - <ul></ul> <ol></ol> <li></li> List tags can be unordered or ordered Using all of the basic tags allow you to add all the content you need to build a website!

This paragraph needs to be in the centre of the page Tag Attributes The other thing you need to know about tags is that they can contain attributes which communicate a message to your web browser that content needs to be displayed in a particular way, e.g. <p align=”center”> This paragraph needs to be in the centre of the page </p> Means that the text in this particular paragraph needs to be aligned in the centre of the page, so in a web browser it would appear like this: This paragraph needs to be in the centre of the page So adding an attribute allows you to change the way your web page is laid out.

CSS CSS or Cascading Style Sheets is a language used in conjunction with html to add style to your website. It can be used to modify colours, font types, font sizes, shadows, images, element positioning, etc.. A bit like ‘formatting’ in Word, Excel, etc.. CSS Can be added in two ways: By typing the CSS code directly into your html editor or by creating a separate CSS editor the linking the two using a link tag <a href =style.css in the <head> of your document. Mastering both CSS and HTML gives you control over all aspects of both the look and content of your website

HELP! Computing Unlocked Resources page: http://www.cardiffschools.org.uk/computing-unlocked-resources Trinket: https://trinket.io Code Academy: https://www.codeacademy.com Code Club Projects: https://www.codeclub.org.uk/projects