Course Objectives. Application, Commercial Uses, Entertainment and fine arts, JournalismDr.and. Lecture Schedule

Size: px
Start display at page:

Download "Course Objectives. Application, Commercial Uses, Entertainment and fine arts, JournalismDr.and. Lecture Schedule"

Transcription

1 Web Site Design & Multimedia Systems Basic Lecturer: Dr. EMAD OTHMAN 1 Course Aim This course prepares students with necessary skills for building web sites. These skills help students apply business objectives to the different components of a business Web site. The course builds on skills and concepts from other courses on programming, E-business, Databases, Systems and analysis and design, etc. This course prepares students with necessary skills for Categorization of multimedia, Usage / Application, Commercial Uses, Entertainment and fine arts, JournalismDr.and Document Imaging.4 Emad Osman Lecture Schedule This course covers everything from basic website to banner ads and interactive ecommerce sites. The course covers basic web site design, navigation, and construction. Course Objectives 2 Course Aim (Cont d) This course covers everything from basic media to the content that uses a combination of different content forms. The term Multimedia can be used as a noun (a medium with multiple content forms) or as an adjective describing a medium as having multiple content forms. The term is used in contrast to media which use only elementary computer display such as text-only, or traditional forms of printed or handproduced material. Multimedia includes a combination of Text, Audio, Still Images, Animation, Video, Or Interactivity Content 3 Forms. Introduction to usability Web user experience Usability navigation convention Tabs and pull down menus Drop Down Menus Page layout and visual design usability guideline Homepage guideline Homepage guideline continued Form design, search and feedback Writing style and web content guideline Flash usability guideline Usability testing Accessibility guideline 5 Project Presentation Tutorial (Lab) Schedule Introduction the flash authoring tool Creating and modifying simple and complex graphics Understanding animation (shape, frame by frame technique) Building button for interactivity Basic interactivity using behaviors Adding sound,adding video Building complexity animation Advanced buttons and event detection Controlling multiple timelines Managing outside communication, Controlling movie clip and sound 6 Multimedia Systems 1 Categorization of multimedia 2 Major characteristics of multimedia 3 Terminology 3.1 History of the term 3.2 Word usage and context 4 Usage / Application 4.1 Creative industries Commercial Uses Entertainment and fine arts Education Journalism Document imaging 7 Tutorial With you can create your own Web site. This tutorial teaches you everything about. is easy to learn - You will enjoy it. 8 Tutorial HOME Introduction Get Started Basic Elements Attributes Headings Paragraphs Formatting Fonts Styles Links Images Tables Lists Forms Frames Iframes Colors Colornames Colorvalues Quick List 9 1

2 Rough Timeline of Web Technologies Documents = Web Pages documents describe web pages documents contain tags and plain text documents are also called web pages What We need to Build a Web Site?????!!!!! Introduction What is? 16 The purpose of a web browser (like Internet Explorer or Firefox) is to read documents and display them as web pages. The browser does not display the tags, but uses the tags to interpret the content of the page: <h1>my First Heading</h1> <p>my first paragraph.</p> Tags 5 Web Development to the next level Documents = Web Pages Artisteer Xampp SWISH Max Photoshop Dreamweaver Hosting Server $$$$$ is a language for describing web pages. stands for Hyper Text Markup Language is not a programming language, it is a markup language A markup language is a set of markup tags uses markup tags to describe web pages Example Explained markup tags are usually called tags tags are keywords surrounded by angle brackets like tags normally come in pairs like <b> and </b> The first tag in a pair is the start tag, the second tag is the end tag Start and end tags are also called opening tags and closing tags 15 The text between and describes the web page The text between and is the visible page content The text between <h1> and </h1> is displayed as a heading The text between <p> and </p> is displayed as a paragraph 18 2

3 Basic - 4 Examples Headings What You Need You don't need any tools to learn You don't need an editor You don't need a web server You don't need a web site 19 Editing Paragraphs Examples headings are defined with the <h1> to <h6> tags. Example <h1>this is a heading</h1> <h2>this is a heading</h2> <h3>this is a heading</h3> tags are not case sensitive: <H> means the same as <h> 22 Headings Examples 25 Links can be written and edited using many different editors like Dreamweaver and Visual Studio. links are defined with the <a> tag. Example <a href=" is a link</a> However, in this tutorial we use a plain text editor (like Notepad) to edit. Note: The link address is specified in the href attribute. Using a plain text editor is the best way to 20 learn..htm or. File Extension? 23 Paragraphs When you save an file, you can use either the.htm or the.html file extension. There is no difference, it is entirely up to you Links Example paragraphs are defined with the <p> tag. Example <p>this is a paragraph.</p> <p>this is another paragraph.</p>

4 Images Element Syntax images are defined with the <img> tag. Example <img src="w3schools.jpg" width="104" height="142" /> <img src="images/ w3schools.jpg " width="104" height="142" /> Note: The name and the size of the image are provided as attributes. 28 Images Example Example Explained An element starts with a start tag / opening tag An element ends with an end tag / closing tag The element content is everything between the start and the end tag Some elements have empty content Empty elements are closed in the start tag Most elements can Dr. Emad Osmanhave attributes 31 Nested Elements Elements 32 Document Example documents are defined by elements Example Explained The element: <p>this is my first paragraph.</p> <p>this is my first paragraph.</p> The element content is: This is my first paragraph. The element: <p>this is my first paragraph.</p> The element defines the body of the document. The element has a start tag and an end tag. documents consist of nested elements. 29 The element has a start tag <p> and an end tag </p>. Example Explained Most elements can be nested (can contain other elements). The <p> element: <p>this is my first paragraph.</p> The <p> element defines a paragraph in the document. The example above contains 3 elements. The element defines the whole document. The element has a start tag and an end tag. 33 The element content is another element (the body 36 element). 4

5 Don't Forget the End Tag Some elements might display correctly even if you forget the end tag: <p>this is a paragraph <p>this is a paragraph The example above works in most browsers, because the closing tag is considered optional. Never rely on this. Many elements will produce unexpected results and/or Dr. Emad Osman errors if you forget the end tag. Attribute Example Headings links are defined with the <a> tag. The link address is specified in the href attribute: Example <a href=" is a link</a> Tip: Use Lowercase Attributes 37 Empty Elements Attribute names and attribute values are case-insensitive. 40 Always Quote Attribute Values elements with no content are called empty elements. Attribute values should always be enclosed in quotes. <br> is an empty element without a closing tag (the <br> tag defines a line break). Double style quotes are the most common, but single style quotes are also allowed. Tip: In X, all elements must be closed. Adding a slash inside the start tag, like <br />, is the proper way of closing empty elements in X (and XML). Tip: In some rare situations, when the attribute value itself contains quotes, it is necessary to use single quotes: name='john "ShotGun" Nelson' 38 Attributes Headings Examples 44 Headings Are Important in documents Attributes Reference Use headings for headings only. Don't use headings to make text BIG or bold. elements can have attributes Attributes provide additional information about element Attributes are always specified in the start tag Attributes come in name/value pairs like: name="value" Headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading. Example <h1>this is a heading</h1> <h2>this is a heading</h2> <h3>this is a heading</h3> Note: Browsers automatically add some empty space (a margin) before and after each heading. Search engines use your headings to index the structure and content of your web pages. Since users may skim your pages by its headings, it is important to use headings to show the document structure. 42 H1 headings should be used as main headings, followed by H2 headings, then the less important H3 45 headings, and so on. 5

6 Lines Comments Example Paragraphs The <hr /> tag creates a horizontal line in an page. documents are divided into paragraphs. Paragraphs are defined with the <p> tag. Example <p>this is a paragraph</p> <p>this is another paragraph</p> The hr element can be used to separate content: Example <p>this is a paragraph</p> <hr /> <p>this is a paragraph</p> <hr /> <p>this is a paragraph</p> Note: Browsers automatically add an empty line before and after a paragraph Tip - How to View Source Lines Example 52 Paragraphs Examples Have you ever seen a Web page and wondered "Hey! How did they do that?" To find out, right-click in the page and select "View Source" (IE) or "View Page Source" (Firefox), or similar for other browsers. 47 Comments This will open a window containing the code of the page. 50 Tag Reference 53 Line Breaks Use the <br /> tag if you want a line break (a new line) without starting a new paragraph: Example <p>this is<br />a para<br />graph with line breaks</p> Comments can be inserted into the code to make it more readable and understandable. Comments are ignored by the browser and are not displayed. Comments are written like this: Example <!-- This is a comment --> Note: There is an exclamation point after the opening bracket, but Dr.not before the closing bracket. Emad Osman The <br /> element is an empty element. It has no end tag. 54 6

7 Line Breaks Example Formatting Tags "Computer Output" Tags uses tags like <b> and <i> for formatting output, like bold or italic text. These tags are called formatting tags. Remark Often <strong> renders as <b>, and <em> renders as <i> Citations, Quotations, and Definition Tags Formatting Tags Tag Reference However, there is a difference in the meaning of these tags: <b> or <i> defines bold or italic text only. 56 Text Formatting <strong> or <em> means that you want the text to be rendered in a way that the user understands as "important". Today, all major browsers render strong as bold and em as italics. However, if a browser one day wants to make a text highlighted with the strong feature, it might be cursive for example and not bold! Preformatted Text Text Formatting Tags 57 This example demonstrates how you can control the line breaks, spaces, and character widths with the <pre> tag. 60 <pre> This is preformatted text. It preserves both spaces and line breaks and shows the text in a monospace font. </pre> <p>the pre tag is good for displaying computer code:</p> <pre> for i = 1 to 10 print i next i </pre> 63 7

8 Text Direction Computer Output Tags This example demonstrates how to change the text direction. This example demonstrates how different computer output tags will be displayed. <code>computer code</code> <br /> <kbd>keyboard input</kbd> <br /> <tt>teletype text</tt> <br /> <samp>sample text</samp> <br /> <var>computer variable</var> <br /> <p> <b>note:</b> These tags are often used to display computer/ programming code on the page. </p> Deleted and Inserted Text Address This example demonstrates how to mark a text that is deleted (strikethrough) or inserted (underscore) to a document. This example demonstrates how to write an address in an document. <address> Donald Duck<br> BOX 555<br> Disneyland<br> USA </address> Fonts Example <p> If your browser supports bidirectional override (bdo), the next line will be written from the right to the left (rtl): </p> <bdo dir="rtl"> Here is some backward text </bdo> 65 <p> a dozen is <del>twenty</del> <ins>twelve</ins> pieces </p> <p> Most browsers will <del>overstrike</del> deleted text and <ins>underscore</ins> inserted text. </p> <p> Some older browsers will display deleted or inserted text as plain text. </p> Styles - CSS CSS is used to style elements. 68 Abbreviations and Acronyms This example demonstrates how to handle an abbreviation or an acronym. 71 CSS is used to style elements Example Fonts <abbr title="united Nations">UN</abbr> <br /> <acronym title="world Wide Web">WWW</acronym> <p>the title attribute is used to show the spelled-out version when holding the mouse pointer over the acronym or abbreviation.</p> The <font> Tag Should NOT be Used The <font> tag is deprecated in 4, and removed from 5. The World Wide Web Consortium (W3C) has removed the <font> tag from its recommendations. In 4, style sheets (CSS) should be used to define the layout and display properties for many elements. The example below shows how the could look by using the <font> tag:

9 Style Example Font, Color and Size Styling with CSS CSS was introduced together with 4, to provide a better way to style elements. CSS can be added to in the following ways: in Cascading Style Sheet files (CSS files) in the <style> element in the head section in the style attribute in single elements 73 Link Tags The font-family, color, and font-size properties defines the font, color, and size of the text in an element: Example <h1 style="font-family:verdana;">a heading</h1> <p style="font-family:arial;color:red;fontsize:20px;">a paragraph.</p> Tag Description <a> Defines an anchor 76 Using the Style Attribute 79 Hyperlinks (Links) It is time consuming and not very practical to style elements using the style attribute. The preferred way to add CSS to, is to put CSS syntax in separate CSS files. However, in this tutorial we will introduce you to CSS using the style attribute. This is done to simplify the examples. It also makes it easier for you to edit the code and try it yourself. 74 The text-align property specifies the horizontal alignment of text in an element: Example <h1 style="text-align:center;">center-aligned heading</h1> <p>this is a paragraph.</p> 77 Style Example Background Color Links are found in nearly all Web pages. Links allow users to click their way from page to page. A hyperlink (or link) is a word, group of words, or image that you can click on to jump to a new document or a new section within the current document. When you move the cursor over a link in a Web page, the arrow will turn into a little hand. Links are specified in using the <a> tag. The <a> tag can be used in two ways: 1. To create a link to another document, by using the href attribute 2. To create a bookmark inside a document, by using the name attribute 80 Link Syntax The background-color property defines the background color for an element: Example The code for a link is simple. It looks like this: <a href="url">link text</a> The href attribute specifies the destination of a link. <body style="background-color:yellow;"> <h2 style="background-color:red;">this is a heading</h2> <p style="background-color:green;">this is a paragraph.</p> <body background="images\wallpaper1.jpg">

10 Links - The target Attribute Create a link attached to an image The target attribute specifies where to open the linked document. <p>create a link attached to an image: <a href=" <img src="images\102.gif" alt=" tutorial" width="32" height="40" /> </a></p> The example below will open the linked document in a new browser window or a new tab: 82 Image Tags Tag <img /> <map> <area /> Description Defines an image Defines an image-map Defines a clickable area inside an image-map <a href="lastpage.htm" target="_blank">last 85 Page</a> 88 <map> Tag Example The <map> tag is used to define a client-side image-map. An image-map is an image with clickable areas. <a href=" target="_blank">visit Youtube to download Clips!</a> <p>if you set the target attribute to "_blank", the link will open in a new browser window/tab.</p> Example <p>click on the sun or on one of the planets to watch it closer:</p> <img src="planets.gif" width="145" height="126" alt="planets" usemap="#planetmap" /> <map name="planetmap"> <area shape="rect" coords="0,0,82,126" alt="sun" href="sun.htm" /> <area shape="circle" coords="90,58,3" alt="mercury" href="mercur.htm" /> <area shape="circle" coords="124,58,8" alt="venus" href="venus.htm" /> </map> Images - The <img> Tag and the Src Attribute Creating a mailto: Link In, images are defined with the <img> tag. The <img> tag is empty, which means that it contains attributes only, and has no closing tag. To display an image on a page, you need to use the src attribute. Src stands for "source". Example: 84 The value of the src attribute is the Uniform Resource Locator (URL) of the image you want 87 to display. 89 <area> Tag The <area> tag defines an area inside an image-map (an image-map is an image with clickable areas). The <area> element is always nested inside a <map> tag. Attribute Values Value Description x1,y1,x2,y2 Specifies the coordinates of the left, top, right, bottom corner of the rectangle (for shape="rect") x,y,radius Specifies the coordinates of the circle center and the radius (for shape="circle") Specifies the coordinates of the edges of the polygon. If the first and last coordinate pairs are x1,y1,x2,y2,.. not the same, the browser will add the last,xn,yn coordinate pair to close the polygon (for shape="poly") 90 10

11 Assignment #1 (Solve) Table Example Tables Assignment #2 Define table cells that span more than one row or one column, as shown in the Figure Assignment #2 (Solve) <table border="1"> <td> <p>this is a paragraph</p> <p>this is another paragraph</p> </td> Define table cells that span more than one row or one column, as shown in the Figure <td>this cell contains a table: <table border="1"> <td>a</td> <td>b</td> <th>first Name:</th> <td>bill Gates</td> <th rowspan="2">telephone:</th> <td> </td> <td> </td> </table> <td>bill Gates</td> <td> </td> <td> </td> Assignment #1 Tables are defined with the <table> tag. A table is divided into rows (with the tag), and each row is divided into data cells (with the <td> tag). td stands for "table data," and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms, other tables, etc. <th>name</th> <th colspan="2">telephone</th> <table border="1"> <th>header 1</th> <th>header 2</th> <td>row 1, cell 1</td> <td>row 1, cell 2</td> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </table> <table border="1"> <td>row 1, cell 1</td> <td>row 1, cell 2</td> </table> </table> <h4>cell that spans two rows:</h4> <table border="1"> <h4>cell that spans two columns:</h4> <table border="1"> <table border="1"> <td>row 1, cell 1</td> <td>row 1, cell 2</td> <td>row 2, cell 1</td> <td>row 2, cell 2</td> </table> Tables and the Border Attribute Table Tags 96 <td>c</td> <td>d</td> </table> </td> <td>this cell contains a list <ul> <li>apples</li> <li>bananas</li> <li>pineapples</li> </ul> </td> <td>hello</td> </table> 99 11

12 Ordered list How to create an ordered list in an document Assignment # 3 An un ordered list starts with the <ol> tag. Each list item starts with the <li> tag. <h4>an Ordered List:</h4> <ol> <li>coffee</li> <li>tea</li> <li>milk</li> </ol> You can display different kinds of bullets in an unordered list by using the type attribute. Lists <h4>disc bullets list:</h4> <ul type="disc"> <li>apples</li> <li>bananas</li> <li>lemons</li> </ul> The most common lists are : An ordered list: 1.The first list item 2.The second list item 3.The third list item An unordered list: List item List item List item 106 Assignment # 3 (Solve) <h4>circle bullets list:</h4> <ul type="circle"> <li>apples</li> <li>bananas</li> <li>lemons</li> </ul> <h4>square bullets list:</h4> <ul type="square"> <li>apples</li> <li>bananas</li> <li>lemons</li> </ul> 101 Unordered list How to create an unordered list in an document List tags An un ordered list starts with the <ul> tag. Each list item starts with the <li> tag. <h4>an Unordered List:</h4> <ul> <li>coffee</li> <li>tea</li> <li>milk</li> </ul>

13 2- Check Boxes Forms and Input 5- Buttons A user can select or deselect a check box. Buttons are common items on a form. Forms are used to select different kinds of user input. <form action=""> <input type="button"value="hello world!"> </form> Form elements are elements that allow the user to enter information in a form (like text fields, text area fields, drop-down menus, radio buttons, check boxes, and so on) Radio Buttons Input tag and attributes Field set When a user clicks a radio button, that button becomes selected, and all other buttons in the same group become deselected. A field set is a grouping of data fields. The most used form tag is the <input> tag. The type of input is specified with the type attribute. The following types are the most commonly used input types Text Fields Drop-Down List Text fields are used when you want the user to type letters, numbers, and so on in a form. 111 <form action=""> <select name="cars"> <option value="volvo">volvo</option> <option value="saab">saab</option> <option value="fiat">fiat</option> <option value="audi">audi</option> </select> </form> </html Form tags A drop-down list is a selectable list. In most browsers, the width of the text field is 20 characters by default

14 <marquee behavior="scroll" direction="left" scrollamount="1">slow scroll speed</marquee> <marquee behavior="scroll" direction="left" scrollamount="10">medium scroll speed</marquee> <marquee behavior="scroll" direction="left" scrollamount="20">fast scroll speed</marquee> 118 You can create a scrolling marquee (i.e. scrolling text or scrolling images) by using the <marquee> tag. You can make the text/images scroll from right to left, left to right, top to bottom, or bottom to top - it's your choice! 119 <marquee behavior="slide" direction="left">your slide-in text goes here</marquee> <marquee behavior="scroll" direction="left">your scrolling text goes here</marquee> <marquee behavior="alternate">your bouncing text goes here</marquee> <marquee behavior="scroll" direction="up">your upward scrolling text goes here</marquee> <marquee behavior="scroll" direction="left"><img src="/pix/smile.gif" width="100" height="100" alt="smile /> </marquee> 122 <marquee behavior="scroll" direction="left" id="mymarquee"> <p>go on... press the button!</p> </marquee> <input type="button" value="stop Marquee" onclick="document.getelementbyid('mym arquee').stop();"> <input type="button" value="start Marquee" onclick="document.getelementbyid('mym arquee').start();"> ON Line Web based <embed src=" width="335" height="232" wmode="transparent" type="application/xshockwave-flash"></embed> </hr> <embed src=" width="165" height="55" wmode="transparent" type="application/xshockwave-flash"></embed> 125 OFF Line Your System <script language="javascript"> var date = new Date(); document.write("<b>system date and Time is:</b> "+ date); </script>

15 Q&A Dr. EMAD OSMAN

What is an HTML File? HTML Tags

What is an HTML File? HTML Tags What is an HTML File? HTML stands for Hyper Text Markup Language An HTML file is a text file containing small markup tags The markup tags tell the Web browser how to display the page An HTML file must

More information

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab.

Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM Advanced Internet Technology Lab. Islamic University of Gaza Faculty of Engineering Department of Computer Engineering ECOM 5049 Advanced Internet Technology Lab Lab # 1 Eng. Haneen El-masry February, 2015 Objective To be familiar with

More information

INTRODUCTION TO WEB USING HTML What is HTML?

INTRODUCTION TO WEB USING HTML What is HTML? Geoinformation and Sectoral Statistics Section (GiSS) INTRODUCTION TO WEB USING HTML What is HTML? HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language

More information

Web Design 101. What is HTML? HTML Tags. Web Browsers. <!DOCTYPE html> <html> <body> <h1>my First Heading</h1> <p>my first paragraph.

Web Design 101. What is HTML? HTML Tags. Web Browsers. <!DOCTYPE html> <html> <body> <h1>my First Heading</h1> <p>my first paragraph. What is HTML? Web Design 101 HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language à A markup language is a set of markup tags The tags describe

More information

HTML. Mohammed Alhessi M.Sc. Geomatics Engineering. Internet GIS Technologies كلية اآلداب - قسم الجغرافيا نظم المعلومات الجغرافية

HTML. Mohammed Alhessi M.Sc. Geomatics Engineering. Internet GIS Technologies كلية اآلداب - قسم الجغرافيا نظم المعلومات الجغرافية HTML Mohammed Alhessi M.Sc. Geomatics Engineering Wednesday, February 18, 2015 Eng. Mohammed Alhessi 1 W3Schools Main Reference: http://www.w3schools.com/ 2 What is HTML? HTML is a markup language for

More information

Programmazione Web a.a. 2017/2018 HTML5

Programmazione Web a.a. 2017/2018 HTML5 Programmazione Web a.a. 2017/2018 HTML5 PhD Ing.Antonino Raucea antonino.raucea@dieei.unict.it 1 Introduzione HTML HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text

More information

HTML Text Formatting. HTML Session 2 2

HTML Text Formatting. HTML Session 2 2 HTML Session 2 HTML Text Formatting HTML also defines special elements for defining text with a special meaning. - Bold text - Important text - Italic text - Emphasized text

More information

Web Designing HTML5 NOTES

Web Designing HTML5 NOTES Web Designing HTML5 NOTES HTML Introduction What is HTML? HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages

More information

The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data.

The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data. Review The internet is a worldwide collection of networks that link millions of computers. These links allow the computers to share and send data. It is not the internet! It is a service of the internet.

More information

CSC 121 Computers and Scientific Thinking

CSC 121 Computers and Scientific Thinking CSC 121 Computers and Scientific Thinking Fall 2005 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language

More information

HTML Hyperlinks (Links)

HTML Hyperlinks (Links) WEB DESIGN HTML Hyperlinks (Links) The HTML tag defines a hyperlink. A hyperlink (or link) is a word, group of words, or image that you can click on to jump to another document. When you move the

More information

Web Publishing with HTML

Web Publishing with HTML Web Publishing with HTML MSc Induction Tutorials Athena Eftychiou PhD Student Department of Computing 1 Objectives Provide a foundation on Web Publishing by introducing basic notations and techniques like

More information

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML)

recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML & Web Pages recall: a Web page is a text document that contains additional formatting information in the HyperText Markup Language (HTML) HTML specifies formatting within a page using tags in its

More information

Tutorial 2 - HTML basics

Tutorial 2 - HTML basics Tutorial 2 - HTML basics Developing a Web Site The first phase in creating a new web site is planning. This involves determining the site s navigation structure, content, and page layout. It is only after

More information

A Balanced Introduction to Computer Science, 3/E

A Balanced Introduction to Computer Science, 3/E A Balanced Introduction to Computer Science, 3/E David Reed, Creighton University 2011 Pearson Prentice Hall ISBN 978-0-13-216675-1 Chapter 2 HTML and Web Pages 1 HTML & Web Pages recall: a Web page is

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension

A HTML document has two sections 1) HEAD section and 2) BODY section A HTML file is saved with.html or.htm extension HTML Website is a collection of web pages on a particular topic, or of a organization, individual, etc. It is stored on a computer on Internet called Web Server, WWW stands for World Wide Web, also called

More information

This document provides a concise, introductory lesson in HTML formatting.

This document provides a concise, introductory lesson in HTML formatting. Tip Sheet This document provides a concise, introductory lesson in HTML formatting. Introduction to HTML In their simplest form, web pages contain plain text and formatting tags. The formatting tags are

More information

Module 2-1-1: Markup Languages & HTML

Module 2-1-1: Markup Languages & HTML WEB ENGINEERING G & DEVELOPMENT SWE 363 Spring Semester 2008-2009 (082) Module 2-1-1: Markup Languages & HTML Dr. El-Sayed El-Alfy Computer Science Department King Fahd University of Petroleum and Minerals

More information

By Ryan Stevenson. Guidebook #2 HTML

By Ryan Stevenson. Guidebook #2 HTML By Ryan Stevenson Guidebook #2 HTML Table of Contents 1. HTML Terminology & Links 2. HTML Image Tags 3. HTML Lists 4. Text Styling 5. Inline & Block Elements 6. HTML Tables 7. HTML Forms HTML Terminology

More information

Web Engineering (Lecture 01)

Web Engineering (Lecture 01) Web Engineering (Lecture 01) By: Kamran Ullah Lecturer (CS) Class BS(CS)-5 th semester Web Engineering Definition 1: Web Engineering is the application of systematic and disciplined approaches to the design,

More information

HTML. Hypertext Markup Language. Code used to create web pages

HTML. Hypertext Markup Language. Code used to create web pages Chapter 4 Web 135 HTML Hypertext Markup Language Code used to create web pages HTML Tags Two angle brackets For example: calhoun High Tells web browser ho to display page contents Enter with

More information

Introduction to Computer Science (I1100) Internet. Chapter 7

Introduction to Computer Science (I1100) Internet. Chapter 7 Internet Chapter 7 606 HTML 607 HTML Hypertext Markup Language (HTML) is a language for creating web pages. A web page is made up of two parts: the head and the body. The head is the first part of a web

More information

Bridges To Computing

Bridges To Computing Bridges To Computing General Information: This document was created for use in the "Bridges to Computing" project of Brooklyn College. You are invited and encouraged to use this presentation to promote

More information

Introduction to HTML

Introduction to HTML Introduction to HTML What is HTML? HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML elements

More information

COPYRIGHTED MATERIAL. Contents. Chapter 1: Creating Structured Documents 1

COPYRIGHTED MATERIAL. Contents. Chapter 1: Creating Structured Documents 1 59313ftoc.qxd:WroxPro 3/22/08 2:31 PM Page xi Introduction xxiii Chapter 1: Creating Structured Documents 1 A Web of Structured Documents 1 Introducing XHTML 2 Core Elements and Attributes 9 The

More information

WTAD Text Editors for HTML. Text Editors: Kate HTML. (HyperText Markup Language)

WTAD Text Editors for HTML. Text Editors: Kate HTML. (HyperText Markup Language) HTML (Hyper Text Markup Language) WTAD 3 languages all web developers must learn: 1. HTML to define the content of web pages 2. CSS to specify the layout of web pages 3. JavaScript to program the behaviour

More information

WTAD. Unit -1 Introduction to HTML (HyperText Markup Language)

WTAD. Unit -1 Introduction to HTML (HyperText Markup Language) WTAD Unit -1 Introduction to HTML (HyperText Markup Language) HTML (Hyper Text Markup Language) 3 languages all web developers must learn: 1. HTML to define the content of web pages 2. CSS to specify the

More information

With HTML you can create your own Web site. This tutorial teaches you everything about HTML.

With HTML you can create your own Web site. This tutorial teaches you everything about HTML. CHAPTER ONE With HTML you can create your own Web site. This tutorial teaches you everything about HTML. Example Explained The DOCTYPE declaration defines the document type The text between and

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

More information

Comp-206 : Introduction to Software Systems Lecture 22. Alexandre Denault Computer Science McGill University Fall 2006

Comp-206 : Introduction to Software Systems Lecture 22. Alexandre Denault Computer Science McGill University Fall 2006 HTTP and HTML Comp-206 : Introduction to Software Systems Lecture 22 Alexandre Denault Computer Science McGill University Fall 2006 15 / 55 Mercury Subversion Directory The URL for the class subversion

More information

HTML Images - The <img> Tag and the Src Attribute

HTML Images - The <img> Tag and the Src Attribute WEB DESIGN HTML Images - The Tag and the Src Attribute In HTML, images are defined with the tag. The tag is empty, which means that it contains attributes only, and has no closing tag.

More information

Certified HTML5 Developer VS-1029

Certified HTML5 Developer VS-1029 VS-1029 Certified HTML5 Developer Certification Code VS-1029 HTML5 Developer Certification enables candidates to develop websites and web based applications which are having an increased demand in the

More information

Desire2Learn: HTML Basics

Desire2Learn: HTML Basics Desire2Learn: HTML Basics Page 1 Table of Contents HTML Basics... 2 What is HTML?...2 HTML Tags...2 HTML Page Structure...2 Required Tags...3 Useful Tags...3 Block Quote - ...

More information

Certified HTML Designer VS-1027

Certified HTML Designer VS-1027 VS-1027 Certification Code VS-1027 Certified HTML Designer Certified HTML Designer HTML Designer Certification allows organizations to easily develop website and other web based applications which are

More information

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21 Table of Contents Chapter 1 Getting Started with HTML 5 1 Introduction to HTML 5... 2 New API... 2 New Structure... 3 New Markup Elements and Attributes... 3 New Form Elements and Attributes... 4 Geolocation...

More information

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application.

As we design and build out our HTML pages, there are some basics that we may follow for each page, site, and application. Extra notes - Client-side Design and Development Dr Nick Hayward HTML - Basics A brief introduction to some of the basics of HTML. Contents Intro element add some metadata define a base address

More information

Markup Language SGML: Standard Generalized Markup Language. HyperText Markup Language (HTML) extensible Markup Language (XML) TeX LaTeX

Markup Language SGML: Standard Generalized Markup Language. HyperText Markup Language (HTML) extensible Markup Language (XML) TeX LaTeX HTML 1 Markup Languages A Markup Language is a computer language in which data and instructions describing the structure and formatting of the data are embedded in the same file. The term derives from

More information

Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4

Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML Part 4 Unit 5 Web Publishing Systems Page 1 of 13 Part 4 HTML 4.01 Version: 4.01 Transitional Hypertext Markup Language is the coding behind web publishing. In this tutorial, basic knowledge of HTML will be covered

More information

I-5 Internet Applications

I-5 Internet Applications I-5 Internet Applications After completion of this unit, you should be able to understand and code a webpage that includes pictures, sounds, color, a table, a cursor trail, hypertext, and hyperlinks. Assignments:

More information

It is possible to create webpages without knowing anything about the HTML source behind the page.

It is possible to create webpages without knowing anything about the HTML source behind the page. What is HTML? HTML is the standard markup language for creating Web pages. HTML is a fairly simple language made up of elements, which can be applied to pieces of text to give them different meaning in

More information

HTML (Hypertext Mark-up language) Basic Coding

HTML (Hypertext Mark-up language) Basic Coding HTML (Hypertext Mark-up language) Basic Coding What is HTML? HTML is a short term for hypertext mark-up language. HTML is used for website development. HTML works as the base structure and text format

More information

INTRODUCTION TO HTML5! HTML5 Page Structure!

INTRODUCTION TO HTML5! HTML5 Page Structure! INTRODUCTION TO HTML5! HTML5 Page Structure! What is HTML5? HTML5 will be the new standard for HTML, XHTML, and the HTML DOM. The previous version of HTML came in 1999. The web has changed a lot since

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

Web Publishing Basics I

Web Publishing Basics I Web Publishing Basics I Jeff Pankin Information Services and Technology Contents Course Objectives... 2 Creating a Web Page with HTML... 3 What is Dreamweaver?... 3 What is HTML?... 3 What are the basic

More information

Hyper Text Markup Language HTML: A Tutorial

Hyper Text Markup Language HTML: A Tutorial Hyper Text Markup Language HTML: A Tutorial Ahmed Othman Eltahawey December 21, 2016 The World Wide Web (WWW) is an information space where documents and other web resources are located. Web is identified

More information

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space.

HTML Summary. All of the following are containers. Structure. Italics Bold. Line Break. Horizontal Rule. Non-break (hard) space. HTML Summary Structure All of the following are containers. Structure Contains the entire web page. Contains information

More information

introduction to XHTML

introduction to XHTML introduction to XHTML XHTML stands for Extensible HyperText Markup Language and is based on HTML 4.0, incorporating XML. Due to this fusion the mark up language will remain compatible with existing browsers

More information

CSS CSS how to display to solve a problem External Style Sheets CSS files CSS Syntax

CSS CSS how to display to solve a problem External Style Sheets CSS files CSS Syntax CSS CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem External Style Sheets can save a lot of work External Style Sheets

More information

Training Sister Hicks

Training Sister Hicks VMT CONSULTING Hand-out Vernell Turner 5/18/2016 2 Training Agenda 1. Images 2. Web Pages General 3. FBH Website 3 Images Tips for Using Images in a MS Word Document: 1. Type your text first before inserting

More information

11. HTML5 and Future Web Application

11. HTML5 and Future Web Application 11. HTML5 and Future Web Application 1. Where to learn? http://www.w3schools.com/html/html5_intro.asp 2. Where to start: http://www.w3schools.com/html/html_intro.asp 3. easy to start with an example code

More information

Introduction to Computer Science (I1100) Internet. Chapter 7

Introduction to Computer Science (I1100) Internet. Chapter 7 Internet Chapter 7 606 HTML 607 HTML Hypertext Markup Language (HTML) is a language for creating web pages. A web page is made up of two parts: the head and the body. The head is the first part of a web

More information

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Structuring Documents for the Web 1

COPYRIGHTED MATERIAL. Contents. Introduction. Chapter 1: Structuring Documents for the Web 1 Introduction Chapter 1: Structuring Documents for the Web 1 A Web of Structured Documents 1 Introducing HTML and XHTML 2 Tags and Elements 4 Separating Heads from Bodies 5 Attributes Tell Us About Elements

More information

DREAMWEAVER QUICK START TABLE OF CONTENT

DREAMWEAVER QUICK START TABLE OF CONTENT DREAMWEAVER QUICK START TABLE OF CONTENT Web Design Review 2 Understanding the World Wide Web... 2 Web Browsers... 2 How Browsers Display Web pages... 3 The Web Process at Sacramento State... 4 Web Server

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

HTML BEGINNING TAGS. HTML Structure <html> <head> <title> </title> </head> <body> Web page content </body> </html>

HTML BEGINNING TAGS. HTML Structure <html> <head> <title> </title> </head> <body> Web page content </body> </html> HTML BEGINNING TAGS HTML Structure Web page content Structure tags: Tags used to give structure to the document.

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

Motivation (WWW) Markup Languages (defined). 7/15/2012. CISC1600-SummerII2012-Raphael-lec2 1. Agenda

Motivation (WWW) Markup Languages (defined). 7/15/2012. CISC1600-SummerII2012-Raphael-lec2 1. Agenda CISC 1600 Introduction to Multi-media Computing Agenda Email Address: Course Page: Class Hours: Summer Session II 2012 Instructor : J. Raphael raphael@sci.brooklyn.cuny.edu http://www.sci.brooklyn.cuny.edu/~raphael/cisc1600.html

More information

Blackboard staff how to guide Accessible Course Design

Blackboard staff how to guide Accessible Course Design The purpose of this guide is to help online course authors in creating accessible content using the Blackboard page editor. The advice is based primarily on W3C s Web Content Accessibility Guidelines 1.0

More information

Introduction to using HTML to design webpages

Introduction to using HTML to design webpages Introduction to using HTML to design webpages #HTML is the script that web pages are written in. It describes the content and structure of a web page so that a browser is able to interpret and render the

More information

What is a web site? Web editors Introduction to HTML (Hyper Text Markup Language)

What is a web site? Web editors Introduction to HTML (Hyper Text Markup Language) What is a web site? Web editors Introduction to HTML (Hyper Text Markup Language) What is a website? A website is a collection of web pages containing text and other information, such as images, sound

More information

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal COMSC-030 Web Site Development- Part 1 Part-Time Instructor: Joenil Mistal Chapter 1 1 HTML and Web Page Basics Are you interested in building your own Web pages? This chapter introduces you to basic HTML

More information

c122jan2714.notebook January 27, 2014

c122jan2714.notebook January 27, 2014 Internet Developer 1 Start here! 2 3 Right click on screen and select View page source if you are in Firefox tells the browser you are using html. Next we have the tag and at the

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

Developing a Basic Web Page

Developing a Basic Web Page Developing a Basic Web Page Creating a Web Page for Stephen Dubé s Chemistry Classes 1 Objectives Review the history of the Web, the Internet, and HTML Describe different HTML standards and specifications

More information

Nauticom NetEditor: A How-to Guide

Nauticom NetEditor: A How-to Guide Nauticom NetEditor: A How-to Guide Table of Contents 1. Getting Started 2. The Editor Full Screen Preview Search Check Spelling Clipboard: Cut, Copy, and Paste Undo / Redo Foreground Color Background Color

More information

Fall Semester 2016 (2016-1)

Fall Semester 2016 (2016-1) SWE 363: WEB ENGINEERING & DEVELOPMENT Fall Semester 2016 (2016-1) Overview of HTML Dr. Nasir Al-Darwish Computer Science Department King Fahd University of Petroleum and Minerals darwish@kfupm.edu.sa

More information

A Brief Introduction to HTML

A Brief Introduction to HTML A P P E N D I X HTML SuMMAry J A Brief Introduction to HTML A web page is written in a language called HTML (Hypertext Markup Language). Like Java code, HTML code is made up of text that follows certain

More information

CSE 3. Marking Up with HTML. Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware

CSE 3. Marking Up with HTML. Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware CSE 3 Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware 1-1 4-1 Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer Fluency with Information Technology

More information

Web Technologies - by G. Sreenivasulu Handout - 1 UNIT - I

Web Technologies - by G. Sreenivasulu Handout - 1 UNIT - I INTRODUCTION: UNIT - I HTML stands for Hyper Text Markup Language.HTML is a language for describing web pages.html is a language for describing web pages.html instructions divide the text of a document

More information

Web Design Lab. Mrs. AVN College Polytechnic :: Visakhapatnam 1

Web Design Lab. Mrs. AVN College Polytechnic :: Visakhapatnam 1 Mrs. AVN College Polytechnic :: Visakhapatnam 1 PROGRAM 1 Web Design Lab body and pre tag

More information

Chapter 1 Self Test. LATIHAN BAB 1. tjetjeprb{at}gmail{dot}com. webdesign/favorites.html :// / / / that houses that information. structure?

Chapter 1 Self Test. LATIHAN BAB 1. tjetjeprb{at}gmail{dot}com. webdesign/favorites.html :// / / / that houses that information. structure? LATIHAN BAB 1 Chapter 1 Self Test 1. What is a web browser? 2. What does HTML stand for? 3. Identify the various parts of the following URL: http://www.mcgrawhill.com/books/ webdesign/favorites.html ://

More information

WEB APPLICATION. XI, Code- 803

WEB APPLICATION. XI, Code- 803 WEB APPLICATION XI, Code- 803 Part A 1. Communication & its methods 2. Importance of communication 3. Factors effecting communication skills. 1. Communication Communication is a vital (Important) part

More information

Announcements. Paper due this Wednesday

Announcements. Paper due this Wednesday Announcements Paper due this Wednesday 1 Client and Server Client and server are two terms frequently used Client/Server Model Client/Server model when talking about software Client/Server model when talking

More information

University of Hawaii at Hilo WEB AND HTML THE INTERNET MAP ( COURTESY OF WIKIMEDIA COMMONS)

University of Hawaii at Hilo WEB AND HTML THE INTERNET MAP ( COURTESY OF WIKIMEDIA COMMONS) University of Hawaii at Hilo WEB AND HTML THE INTERNET MAP ( COURTESY OF WIKIMEDIA COMMONS) CHAPTER 1 INTERNET, WEB AND HTML The Internet refers to the global system of interconnected networks. It is the

More information

Your Own Web Page; Quick and Dirty Via Mashup Reminder: Next Quiz on 4/15

Your Own Web Page; Quick and Dirty Via Mashup Reminder: Next Quiz on 4/15 Your Own Web Page; Quick and Dirty Via Mashup Reminder: Next Quiz on 4/15 A Special Language for the Web In the early 1990 s web pages were mostly described using a special purpose language, called Hyper-Text

More information

Duke Library Website Preliminary Accessibility Assessment

Duke Library Website Preliminary Accessibility Assessment Duke Library Website Preliminary Accessibility Assessment RAW OUTPUT FROM CYNTHIASAYS December 15, 2011 Michael Daul, Digital Projects Developer Digital Experience Services HiSoftware Cynthia Says - Web

More information

Part 1: HTML Language HyperText Make-up Language

Part 1: HTML Language HyperText Make-up Language Part 1: HTML Language HyperText Make-up Language 09/08/2010 1 CHAPTER I Introduction about Web Design 2 Internet and World Wide Web The Internet is the world s largest computer network The Internet is

More information

CSCE 101. Creating Web Pages with HTML5 Applying style with CSS

CSCE 101. Creating Web Pages with HTML5 Applying style with CSS CSCE 101 Creating Web Pages with HTML5 Applying style with CSS Table of Contents Introduction... 1 Required HTML Tags... 1 Comments... 2 The Heading Tags... 2 The Paragraph Tag... 2 The Break Tag... 3

More information

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10

Chapter 1 Introduction to Dreamweaver CS3 1. About Dreamweaver CS3 Interface...4. Creating New Webpages...10 CONTENTS Chapter 1 Introduction to Dreamweaver CS3 1 About Dreamweaver CS3 Interface...4 Title Bar... 4 Menu Bar... 4 Insert Bar... 5 Document Toolbar... 5 Coding Toolbar... 6 Document Window... 7 Properties

More information

<page> 1 Document Summary Document Information <page> 2 Document Structure Text Formatting <page> 3 Links Images <page> 4

<page> 1 Document Summary Document Information <page> 2 Document Structure Text Formatting <page> 3 Links Images <page> 4 Document Summary Document Information Document Structure Text Formatting Links Images Lists Forms Input Type Attributes Select Attributes Option Attributes Table Formatting Objects and iframes iframe Attributes

More information

o Line Breaks </body> </html> This is heading 1 This is some text. This is heading 2 This is some other text. This is heading 2

o Line Breaks </body> </html> This is heading 1 This is some text. This is heading 2 This is some other text. This is heading 2 o Displaying lines of text: This paragraph contains a lot of lines in the source code, but the browser ignores it. This paragraph contains a lot of lines in the source code, but the browser ignores

More information

CMPT 165 Unit 2 Markup Part 2

CMPT 165 Unit 2 Markup Part 2 CMPT 165 Unit 2 Markup Part 2 Sept. 17 th, 2015 Edited and presented by Gursimran Sahota Today s Agenda Recap of materials covered on Tues Introduction on basic tags Introduce a few useful tags and concepts

More information

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS LESSON 1 GETTING STARTED Before We Get Started; Pre requisites; The Notepad++ Text Editor; Download Chrome, Firefox, Opera, & Safari Browsers; The

More information

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 Name Date Final Exam Prep Questions Worksheet #1 1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 2. Which of the following

More information

Figure 1 Properties panel, HTML mode

Figure 1 Properties panel, HTML mode How to add text Adding text to a document To add text to a Dreamweaver document, you can type text directly in the Document window, or you can cut and paste text. You modify text by using the Properties

More information

HTML, CSS, JavaScript

HTML, CSS, JavaScript HTML, CSS, JavaScript Encoding Information: There s more! Bits and bytes encode the information, but that s not all Tags encode format and some structure in word processors Tags encode format and some

More information

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing

Bixby Public Schools Course Essential Elements Grade: Desktop Publishing Content Objective) applicable) Desktop Publishing Weeks 1-6 10-12 1. Create and edit a publication. 2. Design a newsletter. 3. Publish a tri-fold brochure 1-1 Start and quit Publisher 1-2 Describe the

More information

Web Programming HTML CSS JavaScript Step by step Exercises Hans-Petter Halvorsen

Web Programming HTML CSS JavaScript Step by step Exercises Hans-Petter Halvorsen https://www.halvorsen.blog Web Programming HTML CSS JavaScript Step by step Exercises Hans-Petter Halvorsen History of the Web Internet (1960s) World Wide Web - WWW (1991) First Web Browser - Netscape,

More information

7300 Warden Avenue, Suite 503 Markham, Ontario Canada L3R 9Z6. Phone: Toll Free: Fax:

7300 Warden Avenue, Suite 503 Markham, Ontario Canada L3R 9Z6. Phone: Toll Free: Fax: HTML and CSS 7300 Warden Avenue, Suite 503 Markham, Ontario Canada L3R 9Z6 Phone: 905-479-3780 Toll Free: 877-479-3780 Fax: 905-479-1047 e-mail: info@andarsoftware.com Web: www.andarsoftware.com.com Copyright

More information

HTML and CSS: An Introduction

HTML and CSS: An Introduction JMC 305 Roschke spring14 1. 2. 3. 4. 5. The Walter Cronkite School... HTML and CSS: An Introduction

More information

Web Page Creation Part I. CS27101 Introduction to Web Interface Design Prof. Angela Guercio

Web Page Creation Part I. CS27101 Introduction to Web Interface Design Prof. Angela Guercio Web Page Creation Part I CS27101 Introduction to Web Interface Design Prof. Angela Guercio Objective In this lecture, you will learn: What HTML is and what XHTML is How to create an (X)HTML file The (X)HTML

More information

HTML TUTORIAL ONE. Understanding What XHTML is Not

HTML TUTORIAL ONE. Understanding What XHTML is Not HTML TUTORIAL ONE Defining Blended HTML, XHTML and CSS HTML: o Language used to create Web pages o Create code to describe structure of a Web page XHTM: o Variation of HTML o More strictly defines how

More information

HTML. Based mostly on

HTML. Based mostly on HTML Based mostly on www.w3schools.com What is HTML? The standard markup language for creating Web pages HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup

More information

Attributes & Images 1 Create a new webpage

Attributes & Images 1 Create a new webpage Attributes & Images 1 Create a new webpage Open your test page. Use the Save as instructions from the last activity to save your test page as 4Attributes.html and make the following changes:

More information

BIM222 Internet Programming

BIM222 Internet Programming BIM222 Internet Programming Week 7 Cascading Style Sheets (CSS) Adding Style to your Pages Part II March 20, 2018 Review: What is CSS? CSS stands for Cascading Style Sheets CSS describes how HTML elements

More information

Dreamweaver Primer. Using Dreamweaver to Create and Publish Simple Web Pages. Mark Branom, Stanford University, Continuing Studies June 2011

Dreamweaver Primer. Using Dreamweaver to Create and Publish Simple Web Pages. Mark Branom, Stanford University, Continuing Studies June 2011 Dreamweaver Primer Using Dreamweaver to Create and Publish Simple Web Pages Mark Branom, Stanford University, Continuing Studies June 2011 Stanford University Continuing Studies Page 1 of 30 Contents...

More information

5/17/2009. Marking Up with HTML. An HTML Web Page File. Tags for Bold, Italic, and underline. Structuring Documents

5/17/2009. Marking Up with HTML. An HTML Web Page File. Tags for Bold, Italic, and underline. Structuring Documents Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer Marking Up with HTML Fluency with Information Technology Third Edition by Lawrence Snyder Tags describe how a web page should look Formatting

More information

4 HTML Basics YOU WILL LEARN TO WHY IT MATTERS... CHAPTER

4 HTML Basics YOU WILL LEARN TO WHY IT MATTERS... CHAPTER CHAPTER 4 HTML Basics YOU WILL LEARN TO Section 4.1 Format HTML tags Identify HTML guidelines Section 4.2 Organize Web site files and folder Use a text editor Use HTML tags and attributes Create lists

More information

MMGD0204 Web Application Technologies. Chapter 3 HTML - TEXT FORMATTING

MMGD0204 Web Application Technologies. Chapter 3 HTML - TEXT FORMATTING MMGD0204 Web Application Technologies Chapter 3 HTML - TEXT FORMATTING Headings The to tags are used to define HTML headings. defines the largest heading and defines the smallest heading.

More information