Web Programming and Design

Slides:



Advertisements
Similar presentations
Introduction to HTML
Advertisements

HTML Basics Customizing your site using the basics of HTML.
Introduction to HTML & CSS
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,
WeB application development
ASHIMA KALRA.  WHAT IS HTML WHAT IS HTML  HTML TAGS HTML TAGS  FORMATTING TAGS FORMATTING TAGS.
1 eVenzia Technologies Learning HTML, XHTML & CSS Chapter 1.
CM143 - Web Week 2 Basic HTML. Links and Image Tags.
HTML. Goals How to use the Komodo editor HTML coding and testing Basic HTML tags List and Images Tables and Links At least 2 pages and navigation
Chapter 14 Introduction to HTML
HTML & CSS A brief introduction. OUTLINE 1.What is HTML? 2.What is CSS? 3.How are they used together? 4.Troubleshooting/Common problems 5.More resources.
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.
HTML Structure & syntax
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.
Copyright 2007, Information Builders. Slide 1 Understanding Basic HTML Amanda Regan Technical Director June, 2008.
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 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.
Introduction to HTML UWWD. Agenda What do you need? What do you need? What are HTML, CSS, and tags? What are HTML, CSS, and tags? html, head, and body.
WEEK -1 ACM 262 ACM 262 Course Notes. HTML What is HTML? HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML.
Department of Computer Science, Florida State University CGS 3066: Web Programming and Design Spring
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.
INT222 – Internet Fundamentals
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
Week 1: Introduction to HTML and Web Design
HTML Structure & syntax
Basic HTML Introduction to HTML.
Chapter 2 Markup Language By : Madam Hazwani binti Rahmat
Basic concepts of web design
Pertemuan 1 Desain web Pertemuan 1
INTRO TO WEB DEVELOPMENT html
Web Systems & Technologies
Web Basics: HTML/CSS/JavaScript What are they?
Introduction to HTML:.
HTML – The COMPUTING UNLOCKED GUIDE
Elements of HTML Web Design – Sec 3-2
HTML.
INTRODUCTION TO HTML AND CSS
Basic HTML PowerPoint How Hyper Text Markup Language Works
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Elements of HTML Web Design – Sec 3-2
Introduction to web design discussing which languages is used for website designing
Introduction to Web Page Design
Basic HTML and Embed Codes
WEB PAGE AUTHORINHG AND DESIGNING
What is HTML anyway? HTML stands for HyperText Markup Language. Developed by scientist Tim Berners-Lee in 1990, HTML is the "hidden" code that helps us.
INTRODUCTION TO HTML AND CSS
Introduction to HTML5.
Internet Technologies I - Lect.01 - Waleed Ibrahim Osman
Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.
Web Application Development
HTML 5 SEMANTIC ELEMENTS.
Computer communications
Basic HTML Workshop.
Web Development 101 Workshop
HTML & CSS 7 Languages in 7 Days.
Pertemuan 1 Desain web Pertemuan 1
HyperText Markup Language
HTML Structure & syntax
WJEC GCSE Computer Science
Web Client Side Technologies Raneem Qaddoura
Web Programming and Design
Web Programming and Design
Week 5: Recap and Portfolio Site
Web Programming and Design
Web Programming and Design
HTML Introduction.
Presentation transcript:

Web Programming and Design MPT Senior Cycle Tutor: Tamara Week 1

What will we cover? HTML - Website Structure and Layout CSS - Website Style JavaScript - Makes our Website Dynamic and Interactive

Plan for the next 4 weeks: Introduction to HTML tags, creating our template file Introduction to CSS and style Introduction to JavaScript More advanced JavaScript Portfolio Site

Before we get started:

How to view your Website: http://cs1.ucc.ie/~yourUsername

What you will need? We will write our code using a text editor such as Notepad++, Sublime or Text Wrangler We will then test our code in a Browser such as Google Chrome, Mozilla Firefox, Internet Explorer For Homework: Download and install a text editor on your personal machine

What we will use in Class We will write our code in Notepad ++ and test our code in Google Chrome by visiting your website URL (cs1.ucc.ie/~yourUsername) You can use other Browsers and text editors But Google Chrome lets us test our code for errors using Developer Tools in Settings

HTML

<tagname>Some Content in here….</tagname> What is HTML? HTML stands for Hyper Text Markup Language HTML allows us to describe and define the structure of our website using markup All the elements in a web page are represented in tags <tag> Example of HTML elements include: headings, paragraphs, images, videos Nearly all HTML tags come in pairs with an start and end tag <tag> </tag> The Browser will not display these tags, instead it will use the tags to render the web page <tagname>Some Content in here….</tagname> Defines the type of element The stuff that gets displayed Close off the element

What the Browser Displays: Our Code: What the Browser Displays: Notice: names of the tags, pairs of tags (start and end),some tags are inside other tags

HTML Structure Only white is rendered in browser, the grey does not structure and is a template for every web page

HTML REQUIRED Tags <!DOCTYPE html> Declares that this page uses HTML as it’s markup language <html></html> Every other tag on your page goes inside HTML tags <head></head> Where you give meta-information about the site, e.g. title, author, keywords, and import scripts and stylesheets (more on this later) <body></body> Where your main visible content goes. Contains all other markup elements (tables, sections, text, images, whatever)

<head> Tags <title> Website Title ⇒ Shows up in the tab at the top. Simple title for your site <meta> Meta-information ⇒ Used for page description, author, character set etc <style> Style ⇒ Allows CSS style to be written into the page <script> Script ⇒ Allows ECMAScript or Javascript to be written into the page <link> Link ⇒ References an external file to be loaded with the page (usually external stylesheet or script file)

<body> Simple Tags <p> Paragraph ⇒ Creates a paragraph of text on a new line <h1> Heading ⇒ Creates a text heading. Goes from h1 ⇒ h6 for different heading sizes/styles <a> Anchor ⇒ a link to another website/html document/download etc <br> Line break ⇒ Moves content to a new line <img> Image ⇒ Embed an image in the page

<body> Formatting Tags <ul> Unordered list ⇒ tag that contains list elements <li> List element ⇒ An entry in the <ul> list <table> Table layout ⇒ contains table row and column elements <tr> & <td> Table rows and table columns

<body> Structural/Semantic Tags <div> Division tag ⇒ Creates a divided section for content (HTML4) <header> Specifies a header for a document or section (you can have multiple) <article> Specifies independent, self-contained content (blog/forum post, article) <section> Like div, normally a thematic grouping of content <aside> For sidebar or aside information <footer> Specifies a footer for a document or section (you can have multiple)

Important Links http://www.w3schools.com/