Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01.

Slides:



Advertisements
Similar presentations
Introduction to Web Design Lecture number:. Todays Aim: Introduction to Web-designing and how its done. Modelling websites in HTML.
Advertisements

HTML Basics Customizing your site using the basics of HTML.
HTML popo.
Introduction to HTML & CSS
CSS Cascading Style Sheets. Objectives Using Inline Styles Working with Selectors Using Embedded Styles Using an External Style Sheet Applying a Style.
Ideas to Layout Beginning web layout using Cascading Style Sheets (CSS). Basic ideas, practices, tools and resources for designing a tableless web site.
WeB application development
Website Design.
XHTML Basics.
Chapter 2 Introduction to HTML5 Internet & World Wide Web How to Program, 5/e Copyright © Pearson, Inc All Rights Reserved.
COMPUTERS AND INFORMATION SYSTEMS HTML. How the Web Works To access a web site  Enter its address (URL) in the address box of your browser 
 Definition of HTML Definition of HTML  Tags in HTML Tags in HTML  Creation of HTML document Creation of HTML document  Structure of HTML Structure.
Basics of HTML Shashanka Rao. Learning Objectives 1. HTML Overview 2. Head, Body, Title and Meta Elements 3.Heading, Paragraph Elements and Special Characters.
Basics of HTML.
 Using Microsoft Expression Web you can: › Create Web pages and Web sites › Set what you site will look like as you design it › Add text, images, multimedia.
© 2012 Adobe Systems Incorporated. All Rights Reserved. LEARNING THE LANGUAGE OF THE WEB INTRODUCTION TO HTML AND CSS.
HTML HTML stands for "Hyper Text Mark-up Language“. Technically, HTML is not a programming language, but rather a markup language. Used to create web pages.
HTML Structure & syntax
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.
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 4 Foundation Level Course HyperText Markup Language Most common language used in creating Web documents. You can use HTML to create cross-platform.
Programming in HTML.  Programming Language  Used to design/create web pages  Hyper Text Markup Language  Markup Language  Series of Markup tags 
 2008 Pearson Education, Inc. All rights reserved Introduction to XHTML.
By Brieya. What is HTML Hypertext Markup Language, a standardized system for tagging text files to achieve font, colour, graphic, and hyperlink effects.
Just Enough HTML How to Create Basic HTML Documents.
HTML INTRODUCTION. What is HTML?  HTML stands for Hypertext Markup Language  Developed in 1990  Hidden code that helps us communicate with others on.
Creating Webpage Using HTML
HTML: Hyptertext Markup Language Doman’s Sections.
HTML BTEC National in Computing Section5. Create Information “HTML: defining HTML, discussing HTML uses and demonstrating HTML basics, HTML structure…..
How the Web Works Building a Website – Lesson 1. How People Access the Web Browsers People access websites using software called a web browser. To view.
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.
HTML Basics. HTML Coding HTML Hypertext markup language The code used to create web pages.
CHAPTER TWO HTML TAGS. 1.Basic HTML Tags 1.1 HTML: Hypertext Markup Language  HTML stands for Hypertext Markup Language.  It is the markup language.
HTML HyperText Markup Language Victoria E. Kozlek.
HTML. INDEX Introduction to HTML Creating Web Pages Commands And Tags Web Page.
Web Design Terminology Unit 2 STEM. 1. Accessibility – a web page or site that address the users limitations or disabilities 2. Active server page (ASP)
HTML And the Internet. HTML and the Internet ► HTML: HyperText Markup Language  Language in which all pages on the web are written  Not Really a Programming.
Blended HTML and CSS Fundamentals 3 rd EDITION Tutorial 1 Using HTML to Create Web Pages.
HTML Structure & syntax
HTML Structure & syntax
Basic concepts of web design
Pertemuan 1 Desain web Pertemuan 1
Fall 2016 CSULA Saloni Chacha
Intro to HTML CS 1150 Spring 2017.
Online PD Basic HTML The Magic Of Web Pages
Web Basics: HTML/CSS/JavaScript What are they?
HTML Basics.
HTML – The COMPUTING UNLOCKED GUIDE
Intro to HTML CS 1150 Fall 2016.
Mansoor Ahmed Bughio.
HTML.
Uppingham Community College
INTRODUCTION TO HTML AND CSS
AN INTRODUCTORY LESSON TO MAKING A SIMPLE WEB PAGE By: RC Emily Solis
Introduction to XHTML.
WEBSITE DESIGN Chp 1
Basic HTML and Embed Codes
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.
HTML What is it? HTML is a computer language devised to allow website creation. These websites can then be viewed by anyone else connected to the Internet.
INTRODUCTION TO HTML AND CSS
Web Application Development
Basic HTML Workshop.
HTML – The COMPUTING UNLOCKED GUIDE
Pertemuan 1 Desain web Pertemuan 1
AN INTRODUCTION BY FAITH BRENNER
HTML Structure & syntax
5.00 Apply procedures to organize content by using Dreamweaver. (22%)
Presentation transcript:

Understand basic HTML and CSS terminology, concepts, and basic operations. Objective 3.01

What is needed to design a web page? A computer, an internet connection, a web browser (Internet Explorer, Mozilla, etc.), a web hosting space, a domain name, and a simple text editor software program (Notepad), are all needed to design and view a web page.

What is needed to design a web page? Internet Service Provider is an organization that provides services for accessing, using, or participating on the Internet. Web browser is application software used to access and view websites.

What is needed to design a web page? Web hosting is the service that makes a website available to be viewed on the Internet. Domain name a unique name that identifies a web address. The domain name appears in the address bar with a prefix of “www” and suffix such as “.com, .edu, .org, .net,”.

What is needed to design a web page? Text Editor Software is a program that allows you to open, view, and edit plain text files. Unlike word processors, text editors do not add formatting to text. This application software allows the creation of simple HTML webpage design.

What is HTML? HTML stands for HyperText Markup Language. HTML is the set of markup symbols or codes used to create and establish a webpage's structure.

What is the structure of HTML documents? Doctype declaration is the first line of an HTML page. Example: <!DOCTYPE html> The Doctype declaration is not an HTML tag but rather instructions that lets the web browser know what HTML version the page is written in.

What is the structure of HTML documents? Elements are descriptions of each piece of content on a web page so that the web browser knows how to display it. Tags are the codes that describe how a Web page is formatted. Tags are keywords surrounded by angle brackets or the less (<) and greater than (>) symbols.

Example: Opening and Closing Paired Tags What is the structure of HTML documents? HTML Tags are normally paired. Opening Tags mark the beginning of an element. It consists of a less-than sign followed by an element’s name, and then ends with a greater- than sign; for example, <div>. Closing tags marks the end of an element. It consists of a less-than sign followed by a forward slash and the element’s name, and then ends with a greater-than sign; for example, </div>. Example: Opening and Closing Paired Tags <p>Learn to HTML</p> Opening Closing

What is the structure of HTML documents? Start Tag is the first line after the doctype declaration. It tells the web browser where to start and where to stop. Example: <html>, </html> Head elements contains information about the document that is not displayed on the webpage. Example: <head>, </head> Title tags tell the browser what to display as the page title at the top and tells search engines what the title of the site is. Example: <title>, </title>

What is the structure of HTML documents? The Body element contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists, etc. The body tag is required and it should be used once. It should start immediately after the closing head tag and end directly before the closing html tag. Example: <body>, </body> Heading elements allows the use of six levels of document headings, ranging from largest to smallest, breaking up the document into logical sections. Example: <h1>, <h2>, <h3>

What is the structure of HTML documents? Link elements are used to connect your document to a related resource. Links have an opening tag of <a> and a closing tag of </a>. Hyperlinks are texts or images you can click on that will take you to another document or page. Hypertext Reference (href) is the code used to create a link to another page. It specifies the link’s destination. Attributes are used to provide additional information about an element.

What is the structure of HTML documents?

What is the structure of HTML documents? CSS (Cascading Style Sheets) describes how HTML elements are to be displayed on screen; controls the design and layout of the page. A style sheet is a file that describes how an HTML file should look. Style sheets are cascading because the sheets can apply formatting when more than one style applies. 

What is the relationship between HTML & CSS? HTML and CSS are two different types of markup code, which have their own unique syntax (the arrangement in which code is written). The distinction between the two: HTML is the structure for the page, while CSS gives the HTML its styling: HTML = Structure CSS = Style

How can CSS be used to enhance a web page? As elements are added to a web page they are styled using CSS. HTML has tags and CSS has Selectors. Selectors designate which element or elements within HTML to target and apply styles (such as color, size, and position) to. For each selector there are properties inside curly brackets. Properties determine the styles that will be applied to a designated element. Values are given to properties following a colon. Values determine the behavior of a property.

How can CSS be used to enhance a web page? Example: Selector body { font-size: 14px; color: navy; } properties Value