HTML Tags and Structure

Slides:



Advertisements
Similar presentations
Intro to HTML. HTML HTML = HyperText Markup Language Used to define the content of a webpage HTML is made up of tags and attributes Content.
Advertisements

HTML. The World Wide Web Protocols Addresses HTML.
HTML: HyperText Markup Language Hello World Welcome to the world!
Hypertext markup language.  Client asks for an html file  Server returns the html file  Client parses and displays it  This display is what most people.
Beginning Web Site Creation: Dreamweaver CS4 Noreen Brown XHTML CODING -- TAGS.
Intro to HTML Workshop. Welcome This slideshow presentation is designed to introduce you to the basics of HTML. It is the first of three HTML workshops.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
Chapter 14 Introduction to HTML
CSS (Cascading Style Sheets): How the web is styled Create Rules that specify how the content of an HTML Element should appear. CSS controls how your web.
Basic HTML The Magic Of Web Pages. Create an HTML folder  Make a folder in your H drive and name it “HTML”. We will save EVERYTHING for this unit here.
CpSc 462/662: Database Management Systems (DBMS) (TEXNH Approach) HTML Basics James Wang.
INFSCI  Last time we built a doggie web page in class following the instructions in the slide deck: Build Web Page with HTML – see week 3 The topics.
Basic HTML Hyper text markup Language. Re-cap  … - The tag tells the browser that this is an HTML document The html element is the outermost element.
.  Entertain  Inform  Educate  Blogs  Sell  Date  Gamble  Religion.
HTML history, Tags, Element. HTML: HyperText Markup Language Hello World Welcome to the world!
Chapter 2 HTML Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
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.
>> Introduction to HTML: Tags. Hyper - is the opposite of linear Text – words / sentences / paragraphs Mark-up – Marking the text Language – It is a language.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
INTRODUCTION TO HTML5 Semantic Layout in HTML5.  The new semantic layout in HTML5 refers to a new class of elements that is designed to help you understand.
HTML: Hyptertext Markup Language Doman’s Sections.
>> HTML: Structure Elements. Elements in HTML are either Inline or Block. Block-level Elements – Begins on a new line – Occupy the whole width – Stacks.
IT Introduction to Website Development Welcome!
Creating a Web Site Review of Concepts. Templates Templates are special HTML files that are used to quickly create pages on a web site. They contain the.
Miguel Lara, PhD. 1:10 – 1:15 Pre-test 1:15 – 1:30 Course overview 1:30 – 2:00 Setting up DW Site 2:00 – 2:05 > 2:05 – 2:55 Hands-on Lecture 2:55 – 3:00.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 2 Key Concepts 1 Copyright © Terry Felke-Morris.
Web Design Principles 5 th Edition Chapter 3 Writing HTML for the Modern Web.
Basic HTML Page 1. First Open Windows Notepad to type your HTML code 2.
Miguel Lara, PhD. Design and development instructional websites using a variety of web technologies such as HTML5, CSS, JavaScript, and jQuery.
Week 1: Introduction to HTML and Web Design
HTML Extra Markup CS 1150 Spring 2017.
Fall 2016 CSULA Saloni Chacha
Online PD Basic HTML The Magic Of Web Pages
INTRO TO WEB DEVELOPMENT html
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
Introduction to HTML:.
CS 0134 (term 2181) Jarrett Billingsley
Web Development & Design Foundations with HTML5 8th Edition
LAB Work 01 MBA 61062: E-Commerce
IST541 Interactive Media Miguel Lara, PhD.
Web Development & Design Foundations with HTML5 8th Edition
HTML: HyperText Markup Language
Uppingham Community College
Intro to CSS CS 1150 Fall 2016.
A guide to HTML.
HTML.
Intro to CSS CS 1150 Spring 2017.
Laying out a website using CSS and HTML
Digital Design – Copyright Law
“Semantic” Tags Semantic markup describes what the content contains as opposed to what it looks like! Examples include: div, nav, article, header, footer.
Basic HTML and Embed Codes
Intro to Web Development Links
HTML Links.
Introduction to HTML5.
Code For Her - Fall 2018 Joslenne Pena Katie O’Leary
Pertemuan 1b
Introduction to HTML.
Web Development – The Big Picture
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Document Structure & HTML
HTML 5 SEMANTIC ELEMENTS.
HTML & CSS 7 Languages in 7 Days.
Pertemuan 1 Desain web Pertemuan 1
Creating a Basic Web Page using HTML
Web Programming and Design
One Set of Styles Connected to As Many Pages as You Want!!!
HTML5 Tags By Dr Derek Peacock
HTML5 and CSS3 Illustrated Unit B: Getting Started with HTML
Presentation transcript:

HTML Tags and Structure Photo Credit: https://cdn-images-1.medium.com/max/600/1*pixFq7k28LKsABpDNRCjJw.png Code For Her - Fall 2018 Joslenne Pena Katie O’Leary

Tags

<h1>Here's a header!</h1> Common HTML Tags HTML elements are structured with a start tag and an end tag, with the content in between: <h1>Here's a header!</h1> In this case, 'h1' is the type of element we are creating. Always remember to close your tags! Here are some other important tags to remember: <html> and </html> - defines the whole document as an HTML document <body> and </body> - the actual content goes between these tags <!DOCTYPE html> <p> and </p> - the paragraph tag

Attributes Attributes provide additional information about an element Always specified in the start tag Attributes come in name/value pairs CSS styles for attributes – ( we go over this next week) class – applies special properties to groups of elements id – specifies a unique id to one element on the page

Attribute Tags <a href="http://www.yourlinkhere.com">link text</a> href is an attribute indicating the link address Some kinds of elements don't require an end tag: <br> - line break <img src="Documents/Pictures/cat.png" alt="Cat"> This is for images saved on your computer - make sure you know where the image is saved! <img src="http://i.imgur.com/81qyN1y.jpg" alt="Doge"> This is for images already hosted online

Anchor link You can use text or images as links to click to another area You can link to local files or web pages online You can use the # sign in case you have no link yet

<header> A group of introductory or navigational aids: title, navigation links, etc. Not to be confused with <head> or the different headings.

<nav> A section of the page that links to other pages or to parts within the page. Often found in the <header> tag

<footer> A section that contains info such as copyright data, related documents, and links to social media Typically at the bottom of the page, but not required.

<figure> More semantics than <img>. Can include:

Special Characters Yes – they exist in case you actually want to display brackets or anything else and not tags < > …. <!-- -- > comments

Audio / Video These elements are new – intended to make things more interactive

How to Design The most important step in web design is the design. You need a clear picture of what you want to create, before you can begin coding.

Remember…

Let’s try these tags!

Project Brainstorm Portfolio Fun / Novelty For your course Blog Cat website For your course Blog Gallery or slideshow Animation / canvas

Acknowledgements/Contributions These slides are Copyright 2015- Colleen van Lent as part of http://www.intro-webdesign.com/ and made available under a Creative Commons Attribution-NonCommercial 4.0 License. Please maintain this last slide in all copies of the document to comply with the attribution requirements of the license. If you make a change, feel free to add your name and organization to the list of contributors on this page as you republish the materials. Initial Development: Colleen van Lent , University of Michigan School of Information

For Fun Wayback Machine

Safari / Gitlab Does have inspect element https://www.google.com/search?q=does+safari+have+inspect+el ement&rlz=1C1GCEA_enUS813US813&oq=does+safari+have+inspe ct+element+&aqs=chrome..69i57.6143j0j7&sourceid=chrome&ie=U TF-8