Web Forms Part I HTML. Instructor: Dr. Wei Ding Fall Instructor: Wei Ding. CS 437/637 Database-Backed Web Sites and Web Services

Size: px
Start display at page:

Download "Web Forms Part I HTML. Instructor: Dr. Wei Ding Fall Instructor: Wei Ding. CS 437/637 Database-Backed Web Sites and Web Services"

Transcription

1 Web Forms Part I Instructor: Dr. Wei Ding Fall HTML Instructor: Wei Ding 2

2 Getting Started: How does the WWW work? All the computers uses a communication standard called HTTP. Web information is stored in documents called Web pages. Web pages are files stored on computers called Web servers. Computers reading the Web pages are called Web clients. Web clients view the pages pg with a program called a Web browser. 3 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 have an htm or html file extension. An HTML file can be created using a simple text editor, such as Notepad, or Vi. 4

3 .html versus.htm Windows systems usually use.htm extension, while UNIX systems are.html specific. Originally most Web servers were Unix based and.html was the accepted file extension structure. Hence some people think.htm is a little bit informal. Now most Web servers are configured to recognize both. For DCM Web server both extensions work. To be on the safe side, always ask the system administrator which file extension they support and/or prefer. 5 HTML Editors Some WYSIWYG (What You See Is What You Get) editors are also available. It means that you design your HTML document visually, as if you were using a word processor, instead of writing i the markup tags in a plaintext file and imagining what the resulting page will look like. However, if you want to be a skillful Web developer, you should use a plain text editor primarily to learn your primer HTML. In this class, writing HTML source code from scratch is your primary choice. 6

4 HTML Tags HTML tags are used to mark up HTML elements. HTML tags are surrounded d by the two characters < and > >. Anything that is written between the < and > brackets will be invisible, and not appear on the resulting Web page. HTML tags normally come in pairs start tag and end tag. HTML tags are NOT case sensitive. To get ready for the next generations of HTML - XHTML, you should start using lowercase tags. 7 Example: A simple bare-bone document <html> <head> <title>a Simple HTML Example</title> </head> <body> <h1>html is Easy To Learn</h1> <p>welcome to the world of HTML. This is the first paragraph. While short it is still a paragraph!</p> <p>and this is the second paragraph.</p> </body> </html> 8

5 HTML Documents: Basic Elements All HTML documents should follow the same basic format - otherwise some commands may not function properly: p <html> <head> <title>here comes the title</title> </head> <body> Here comes the body part </body> </html> 9 HTML Documents: Required Elements The required elements are the <html>, <head>, <title>, and <body> tags (and their corresponding end tags). Because you should include these tags in each file, you might want to create a template file with them. (Some browsers will format your HTML file correctly even if these tags are not included. But some browsers won't! So make sure to include them.) In this class you are required to write your HTML file with those basic elements. 10

6 Basic HTML Tags The most important tags in HTML are tags that define headings, paragraphs and line breaks. Headings Paragraphs Line breaks Horizontal rules Comments 11 HTML Linking The chief power of HTML comes from its ability to link text (an image) to another document or section of a document. A browser highlights the identified text or image with color (underlines) to indicate that it is a hypertext link (often shortened to hyperlink or just link). 12

7 HTML Linking HTML uses the <a> (anchor) tag to create a link to any resource on the web: an HTML page, an image, a sound file, a movie, etc. <a href= url >Text/Image to be displayed </a> <a href=" /h f "> <img src=" alt="valid lid XHTML 1.0!" height="31" ht width="88" /> </a> 13 Relative pathnames vs. absolute pathnames You can link to documents in other directories by specifying the relative path from the current document to the linked document. You can also use the absolute pathname (the complete URL) of the file. Compared with absolute pathname, relative links are more efficient in accessing a server. They also have the advantage of making your documents more "portable" -- for instance, you can create several web pages in a single folder on your local computer, using relative links to hyperlink one page to another, and then upload the entire folder of web pages to your web server. Without changing the HREF s, The pages on the server will then link to other pages on the server, and the copies on your hard drive will still point to the other pages stored there. 14

8 Example.. Parent folder. Current folder FolderA FolderC A.html C.html FolderB B.html Q: Inside A.html, how to set the relative path for C.html and B.html? A: A.html: <a href=./folderc/c.html >C.html</a> <a href=../folderb/b.html >B.html</a> 15 HTML Linking Links to specific sections Links between sections of different documents Links to specific sections within the current document Linking -- mailto: <a 16

9 HTML Lists Lists Unordered lists: <ul>, <li> Ordered lists: <ol>, <li> 17 Common Mistake: Nested Lists <ul> <li>first layer item 1</li> <li>first layer item 2 <ul> <li>second layer item 1</li> <li>second layer item 2</li> </ul> </li> <li>first layer item 3</li> </ul> The nested list must be defined inside another list item 18

10 Character Entities Some characters like the < character, have a special meaning in HTML, and therefore cannot be used in the text. Some characters does not exist on your keyboard. To display < in HTML, we have to use a character entity. A character entity has three parts: an ampersand (&), an entity name or a # and an entity number, and finally a semicolon(;). Character entities are case sensitive. To display < in HTML we must write: < or < 19 The Most Common Character Entities Non-breaking space: or Less than: < or < Greater than: > or > Ampersand: & or & Copyright: or Registered Trademark: or 20

11 Case Study: Set up your own web site at 1. Create the HTML files for your web site at your local computer. 2. Use relative path names for the hyperlinks. 3. Use index.html (or index.htm) as the homepage of your web site. 4. Set up the connection with using Network Driver Mapping or FTP. 5. Upload HTML files to the public_html html folder under your web account. 6. Use the virtual path URL, to test your web site at dcm. is mapped to the index.html, index.htm, default.htm, or default.html under your public_html folder. You do NOT need to put public_html inside the URL. E.X., if you create another folder 637 under the public_html folder, to access file blah.html html under /public_html/637 folder, the URL is URL must skip /public_html folder 21 HTML Form While almost all other elements in HTML are for controlling the display and presentation, HTML <FORM>, <INPUT>, <SELECT>, and <TEXTAREA> tags add interactivity ty to the web site. The HTML forms handle operations like taking orders, surveys, user registration and so on. 22

12 <form> <FORM>: All the input elements should be enclosed within the opening and closing <FORM> tags. The important attributes for the form tag are: ACTION="handlerpage" This Attribute specifies the page which handles the input from the user. Usually, this will be a script or a CGI program which h processes the data supplied by the user. METHOD ="GET" "POST" ( is either GET or POST.) In simple terms, if you use GET method, the input values are passed as part of the URL. If it is POST, the information is sent to the server as part of the data body and will not be visible in the URL box in the user's browser. If you don't specify the method, GET is taken by default. 23 The input items You can define different types of input tags like text boxes, check boxes, radio buttons, submit buttons, reset buttons, imagine buttons with <input> tag. 24

13 Text input Text input is used to collect single line of text from the user like name, address etc. It is the most commonly used input type. <INPUT TYPE="TEXT" > There are some attributes that you can specify with the text input item: NAME= internalname : defines the name of the field. This name will be used at the server side to identify this input item. VALUE="default value : the text you give as VALUE will be displayed by default in the text box. MAXLENGTH="maxChars : specifies the maximum number of characters the user can enter into this text box. SIZE="lengthChars : the length of the input text box, in number of characters. 25 More input objects <INPUT> <input type= submit > other attributes are: NAME ="name : This attribute is to identify if the submit button by the name. There can be more than one submit buttons in a form. At the server side, the submit button which was pressed can be identified using the NAME attribute. VALUE="label : The string given in the VALUE attribute is displayed as the label of the submit button in the form. Reset buttons: <input type= reset > 26

14 Select list and multi-line text <SELECT> It is possible to allow multiple selection in the list. Use MULTIPLE attribute in the SELECT tag. To display more than one item at a time in the list box, you can use SIZE attribute. <TEXTAREA> COLS="columns : defines the width (number of characters per line) the text area can accommodate without scrolling. ROWS="rows : defines the number of lines (number of rows) the text area can accommodate without scrolling. 27 HTML Form Design Usability rules the Web. Simply stated, if the customer can t find a product, the he or she will not buy it. Websites should make the main things users want to do very simple. Reset Button: Do we always need this button? Other concern: How to design a form based on the usability? 28

15 Acknowledgments WWWW3Schools The National Center for Supercomputing applications (NCSA) Jakob Nielsen, Designing Web Usability HTML homepage 29 ASP.NET Web Form 30

16 Controls Controls are the building blocks of a graphical user interface. For example, familiar controls include buttons, checkboxes, list boxes, etc. Controls provide a means for a user to indicate a preference, enter data, or make selections. 31 Controls There are five types of web controls in ASP.NET: 1. HTML controls --The original controls in HTML available to any HTML page. pg These all work in ASP.NET exactly as they work in other Web pages. 2. Web server controls Provide the same functionality as HTML server controls but integrated into the ASP.NET programming model. 3. Validation controls Provide a full range of built-in form validation capability. 4. HTML server controls -- Based on original HTML controls, but executed by ASP.NET web server. 5. User controls o and custom controls o Controls created by the developer. 32

17 The ASP.NET Web Form The term web form refers to the grouping g of two distinct blocks of code: The HTML template containing page layout information and ASP.NET server controls. This is responsible for the presentation of the web form on the browser. The ASP.NET code that provides the web form's processing logic. This is responsible for generating dynamic content to be displayed within the web form. This content is typically exposed via server controls defined in the HTML presentation block. Although a web form may also be an HTML form (that is, there's nothing to stop us using <form> elements inside an ASPX), remember that these two entities are defined in quite distinct terms. 33 How the <form> tag works in ASP.NET ASP.NET has a set of form controls that can be used just like their HTML form control equivalents, the main difference being that they are actually constructed dynamically on the server and then sent out. The ASP.NET version of the <form> tag looks like this: <form runat="server">... ASP.NET web form... </form> 34

18 How the <form> tag works in ASP.NET It takes only one attribute (runat="server") ), which tells the web server that it should process the form itself, rather than just sending it out to the browser (which won't be able to interpret this ASP.NET-specific attribute). Even though we haven't specified the contents of the method and get attributes, ASP.NET is able to handle this itself and provide its own values. In fact all ASP.NET forms are sent by the POST method. 35 ASP.NET and Browsers The browser never sees the Web server control. The server processes the Web server control and sends standard HTML to the browser. ASP.NET considers browsers to be either uplevel or downlevel. Uplevel l browsers support script Version 1.2 (ECMA Script, JavaScript, Jscript) and HTML 4.0; typical uplevel browsers would include Internet Explorer 4.0 and later releases. ASP.NET can tell you which browser is being used to display the page. The web server will automatically convert your HTML to reflect the capabilities of the client browser. 36

19 Web Server Controls web server controls are special ASP.NET tags understood by the server. Web server controls are created on the server and they require a runat="server" attribute to work. Web server controls do not necessarily map to any existing HTML elements and they may represent more complex elements. The syntax for creating a web server control is: <asp:control_name id="some_id" runat="server" /> or <asp:control_name id="some_id" " id" runat="server" " > text </asp:control_name> ol name> 37 The <asp:label> Control The <asp:label> control provides an effective way of displaying text on your web page in ASP.NET. It mimics i the HTML <span> tag, a tag that t has no effect on the text it contains, but can be used to logically group text t together th into sections, paragraphs, pages, or sentences. This control is actually vital to us if we want to separate our HTML from our ASP.NET code. 38

20 The <asp:label> Control Attributes The <asp:label> control is just like any normal HTML form control in that it has a collection of attributes you can set. Besides runat= server, part of the attributes t you may want to use are: id sets a unique identifier for that particular instance of the label Text sets the text that you want the label to display Visible determines whether the label control is currently visible on the page: this must be either true or false BackColor sets the background color of the label ForeColor sets the foreground color of the label Height sets the height in pixels of the label Width sets the width of the label control 39 <asp:label> control To create the control with the minimum of information needed, you can just supply the runat and id attributes: <asp:label id= msg1" runat="server">hello</asp:label> The id attribute is used to uniquely identify the <asp:label> control so you can refer to it in your ASP.NET code. The runat="server" attribute tells the server to process the control and generate HTML code to be sent to the client. Alternatively, you can use the text attribute. This way, everything can be contained within the opening tag, in which case you need to close the tag in the following way: <asp:label id= msg1" text="hello" runat="server" /> 40

21 How it works The <asp:label> controls are translated into HTML <span> tags, to which h they are functionally equivalent. <asp:label id="message1" runat="server" text="tom"/> <span id="message1">tom</span> <asp:label id="message2" runat="server" text="houston International Festival"/> <span id="message2">houston International Festival</span> 41 Control Attributes: labelcontrol_csharp.aspx and labelcontrol_csharp.aspx.cs The Page_Load event is triggered whenever an ASP.NET page loads, and ASP.NET will automatically call the subroutine Page_ load, and execute ecute the code inside it. <%@ Page language= C#" %> is the page directive. Page directives enable you to select settings that apply to the entire page. 42

22 Handling Control Events ASP.NET is an event-driven, server-side side programming language. ASP.NET controls can generate events when clients interact with them. When users interact with ASP.NET controls, their actions trigger events corresponding to each control to respond to user actions. 43 Control Attributes: labelcontrol_csharp.aspx and labelcontrol_csharp.aspx.cs ASP.NET has allowed us to directly influence the contents of the <asp:label> control, and set it separately, independently from our HTML code. You can reference any of the attributes of the server control as follows: [ServerControl].[ServerControlAttribute] 44

23 The <asp:dropdownlist> Control HTML Drop-down listboxes ASP.NET Drop-down list Control <select name="list1"> <option value= Cat >Cat</option> o <option value= Dog >Dog</option> <option value= Bird >Bird</option> </select> <asp:dropdownlist d tid="list1" runat="server"> <asp:listitem>cat</asp:listitem p > <asp:listitem>dog</asp:listitem > <asp:listitem>bird</asp:listitem > </asp:dropdownlist d t> 45 The <asp:dropdownlist> Control different from HTML drop-down listboxes There are three important differences from the HTML form control: The <asp:dropdownlist> tag directly replaces the <select> tag The <asp:listitem> tag replaces the <option> tag The id attribute replaces the name attribute 46

24 id vs. name Up until now, in all HTML form controls, the name attribute has been used to pass the identity of the form control to the ASP.NET code. The id attribute, for all but form controls, provides exactly the same function for any other HTML tags. The server-side control is therefore being brought up to date, by using the id attribute to perform this function, rather than the name attribute. 47 <asp:listitem> control All three of the following lines are equivalent: <asp:listitem>item 7</asp:listItem> <asp:listitemtext= text= Item 7 ></asp:listitem> <asp:listitem text= Item 7 /> text is used for the text string displayed for a ListItem. The value is not displayed, but is available programmatically. If only value is used, the associated string value will be displayed. 48

25 Using the <asp:dropdownlist> Control: dropdown_csharp.aspx & dropdown_csharp.aspx.cs The Page_Load subroutine runs EVERY time the page is loaded. If you want to execute the code in the Page_Load subroutine only the FIRST time the page is loaded, you can use the Page.IsPostBack property. If the Page.IsPostBack property is false, the page is loaded for the first time, if it is true, the page is posted back to the server (i.e. from a button click on a form). 49 Page.IsPostBack Property Page.IsPostBack P kproperty: Gets a value indicating whether the page is being loaded in response to a client postback, or if it is being loaded and accessed for the first time. 50

26 How it works <form runat= server > is converted to an HTML form, which automatically includes method, action, name, and id attributes. POST is used by default method for the form control. You can define these attributes if you do not want the default values, but you cannot change the action attribute in ASP.NET. <form runat="server"> <form name="_ctl0" method="post" action="dropdown_csharp.aspx" id="_ctl0"> 51 How it works Which h is your favoriate pet? <br/><br/> b/ b/ <asp:dropdownlist id="list1" runat="server"> <asp:listitem>cat</asp:listitem> <asp:listitem>dog</asp:listitem> <asp:listitem>bird</asp:listitem> </asp:dropdownlist> p <input type="hidden" name=" VIEWSTATE" value="ddwtmtmyntu5mzc0njt0pdtspgk8mt47pjtsphq8cdxwpgw8vgv4d Ds+O2w8WW91IGhhdmUgc2VsZWN0ZWQgQ2F0Oz4+Oz47Oz47Pj47PmqN2 2V Q2F0O 47O 47Pj47P N2 gx3s+bbhcvy4nlqdvnv9/ql" /> Which is your favorite pet?<br /><br /> <select name="list1" id="list1"> <option selected="selected" value="cat">cat</option> <option value="dog">dog</option> <option value="bird">bird</option> </select> 52

27 How it works There is a hidden control called VIEWSTATE, whose value is an encoded representation of the overall state of the form (as it was when last submitted). This is used by ASP.NET to keep track of all the server control settings from one page refresh to another otherwise, our drop-down d listbox would revert to a static default setting every time we submitted a value. It may not be immediately obvious how useful this can be : consider a registration form in which you have to enter a full set of personal details. If you forget to fill in a required field, and then submit the form, you may well be prompted with the same form again. Perhaps the field you missed will be highlighted, but unless the page has been very carefully coded (or is running on a sophisticated technology like ASP.NET), all the data you just entered will have to be typed in again. Thanks to VIEWSTATE, all that data is automatically persisted through to the refreshed page, and we (as developers) haven't even to raise a finger! 53 How it works list1.selecteditem.text: As list1 is unique on the page, it refers directly to our drop-down listbox. The SelectedItem keeps a record of which item the user has selected. ecte The Value item returns the corresponding contents of the <asp:listitem> tag. 54

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 4 5 6 8 Introduction to ASP.NET, Visual Studio and C# CST272 ASP.NET Static and Dynamic Web Applications Static Web pages Created with HTML controls renders exactly

More information

CHAPTER 1: GETTING STARTED WITH HTML CREATED BY L. ASMA RIKLI (ADAPTED FROM HTML, CSS, AND DYNAMIC HTML BY CAREY)

CHAPTER 1: GETTING STARTED WITH HTML CREATED BY L. ASMA RIKLI (ADAPTED FROM HTML, CSS, AND DYNAMIC HTML BY CAREY) CHAPTER 1: GETTING STARTED WITH HTML EXPLORING THE HISTORY OF THE WORLD WIDE WEB Network: a structure that allows devices known as nodes or hosts to be linked together to share information and services.

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

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

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

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

RAGE WebDesign Quick Start 1 of 18. Welcome To RAGE WebDesign

RAGE WebDesign Quick Start 1 of 18. Welcome To RAGE WebDesign RAGE WebDesign Quick Start 1 of 18 Welcome To RAGE WebDesign RAGE WebDesign Quick Start 2 of 18 About This Quick Start Guide 3 An Introduction To Html 3 Helpful Tips For Working With Rage Webdesign 7 See

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

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

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

Creating Web Pages Using HTML

Creating Web Pages Using HTML Creating Web Pages Using HTML HTML Commands Commands are called tags Each tag is surrounded by Some tags need ending tags containing / Tags are not case sensitive, but for future compatibility, use

More information

FIT 100 LAB Activity 3: Constructing HTML Documents

FIT 100 LAB Activity 3: Constructing HTML Documents FIT 100 LAB Activity 3: Constructing HTML Documents Winter 2002.pdf version of this lab (may be better formatted) Required Reading for Lab 3 Chapter 4 of the FIT course pack Additional helpful references

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

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

Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT

Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT Dynamic Web Programming BUILDING WEB APPLICATIONS USING ASP.NET, AJAX AND JAVASCRIPT AGENDA 3. Advanced C# Programming 3.1 Events in ASP.NET 3.2 Programming C# Methods 4. ASP.NET Web Forms 4.1 Page Processing

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

CST272 Getting Started Page 1

CST272 Getting Started Page 1 CST272 Getting Started Page 1 1 2 3 5 6 8 10 Introduction to ASP.NET and C# CST272 ASP.NET ASP.NET Server Controls (Page 1) Server controls can be Buttons, TextBoxes, etc. In the source code, ASP.NET controls

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

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

AOS Lab 4 HTML, CSS and Your Webpage

AOS Lab 4 HTML, CSS and Your Webpage AOS 452 - Lab 4 HTML, CSS and Your Webpage 1 INTRODUCTION The influence of the Internet on today s society would be very difficult to understate. From its more secretive beginnings in the United States

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

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

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

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

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

Chapter 4: Marking Up With HTML: A Hypertext tmarkup Language Primer

Chapter 4: Marking Up With HTML: A Hypertext tmarkup Language Primer Chapter 4: Marking Up With HTML: A Hypertext tmarkup Language Primer Fluency with Information Technology Third Edition by Lawrence Snyder Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley

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

Creating Web Pages. Getting Started

Creating Web Pages. Getting Started Creating Web Pages Getting Started Overview What Web Pages Are How Web Pages are Formatted Putting Graphics on Web Pages How Web Pages are Linked Linking to other Files What Web Pages Are Web Pages combine

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 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

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

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

(Refer Slide Time: 01:41) (Refer Slide Time: 01:42)

(Refer Slide Time: 01:41) (Refer Slide Time: 01:42) Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #14 HTML -Part II We continue with our discussion on html.

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

1.264 Lecture 12. HTML Introduction to FrontPage

1.264 Lecture 12. HTML Introduction to FrontPage 1.264 Lecture 12 HTML Introduction to FrontPage HTML Subset of Structured Generalized Markup Language (SGML), a document description language SGML is ISO standard Current version of HTML is version 4.01

More information

BASIC HTML LAB 4. Vocabulary. Discussion and Procedure

BASIC HTML LAB 4. Vocabulary. Discussion and Procedure LAB 4 BASIC HTML The World Wide Web (commonly just called the web ) is an enormous and rapidly growing collection of documents stored on computers all around the world connected by the Internet. In addition

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

3. WWW and HTTP. Fig.3.1 Architecture of WWW

3. WWW and HTTP. Fig.3.1 Architecture of WWW 3. WWW and HTTP The World Wide Web (WWW) is a repository of information linked together from points all over the world. The WWW has a unique combination of flexibility, portability, and user-friendly features

More information

Downloads: Google Chrome Browser (Free) - Adobe Brackets (Free) -

Downloads: Google Chrome Browser (Free) -   Adobe Brackets (Free) - Week One Tools The Basics: Windows - Notepad Mac - Text Edit Downloads: Google Chrome Browser (Free) - www.google.com/chrome/ Adobe Brackets (Free) - www.brackets.io Our work over the next 6 weeks will

More information

Marking Up with HTML. Tags for Bold, Italic, and underline. An HTML Web Page File. Chapter 4: Marking Up With HTML: A. Formatting with Tags:

Marking Up with HTML. Tags for Bold, Italic, and underline. An HTML Web Page File. Chapter 4: Marking Up With HTML: A. Formatting with Tags: Chapter 4: Marking Up With HTML: A HypertextMarkup tm Language Primer Fluency with Information Technology Third Edition by Lawrence Snyder Marking Up with HTML Tags describe how a web page should look

More information

CSI 3140 WWW Structures, Techniques and Standards. Markup Languages: XHTML 1.0

CSI 3140 WWW Structures, Techniques and Standards. Markup Languages: XHTML 1.0 CSI 3140 WWW Structures, Techniques and Standards Markup Languages: XHTML 1.0 HTML Hello World! Document Type Declaration Document Instance Guy-Vincent Jourdan :: CSI 3140 :: based on Jeffrey C. Jackson

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

IT350 Web & Internet Programming. Fall 2012

IT350 Web & Internet Programming. Fall 2012 IT350 Web & Internet Programming Fall 2012 Asst. Prof. Adina Crăiniceanu http://www.usna.edu/users/cs/adina/teaching/it350/fall2012/ 2 Outline Class Survey / Role Call What is: - the web/internet? - web

More information

What You Will Learn Today

What You Will Learn Today CS101 Lecture 03: The World Wide Web and HTML Aaron Stevens 23 January 2011 1 What You Will Learn Today Is it the Internet or the World Wide Web? What s the difference? What is the encoding scheme behind

More information

Objective % Select and utilize tools to design and develop websites.

Objective % Select and utilize tools to design and develop websites. Objective 207.02 8% Select and utilize tools to design and develop websites. Hypertext Markup Language (HTML) Basic framework for all web design. Written using tags that a web browser uses to interpret

More information

HTML Forms. By Jaroslav Mohapl

HTML Forms. By Jaroslav Mohapl HTML Forms By Jaroslav Mohapl Abstract How to write an HTML form, create control buttons, a text input and a text area. How to input data from a list of items, a drop down list, and a list box. Simply

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

HTML OBJECTIVES WHAT IS HTML? BY FAITH BRENNER AN INTRODUCTION

HTML OBJECTIVES WHAT IS HTML? BY FAITH BRENNER AN INTRODUCTION HTML AN INTRODUCTION BY FAITH BRENNER 1 OBJECTIVES BY THE END OF THIS LESSON YOU WILL: UNDERSTAND HTML BASICS AND WHAT YOU CAN DO WITH IT BE ABLE TO USE BASIC HTML TAGS BE ABLE TO USE SOME BASIC FORMATTING

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

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

HTML Overview. With an emphasis on XHTML

HTML Overview. With an emphasis on XHTML HTML Overview With an emphasis on XHTML What is HTML? Stands for HyperText Markup Language A client-side technology (i.e. runs on a user s computer) HTML has a specific set of tags that allow: the structure

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

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

AOS 452 Lab 4: HTML, CSS and Your Webpage

AOS 452 Lab 4: HTML, CSS and Your Webpage AOS 452 Lab 4: HTML, CSS and Your Webpage (October 2, 2007) 1 Tip of the Day: Although we are taking a break from GEMPAK today, you may find the following information handy. GEMPAK contains two commands,

More information

Summary 4/5. (contains info about the html)

Summary 4/5. (contains info about the html) Summary Tag Info Version Attributes Comment 4/5

More information

ASP.NET Pearson Education, Inc. All rights reserved.

ASP.NET Pearson Education, Inc. All rights reserved. 1 ASP.NET 2 Rule One: Our client is always right. Rule Two: If you think our client is wrong, see Rule One. Anonymous 3 25.1 Introduction ASP.NET 2.0 and Web Forms and Controls Web application development

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

Creating Web Applications Using ASP.NET 2.0

Creating Web Applications Using ASP.NET 2.0 12 Creating Web Applications Using ASP.NET 2.0 12 Chapter CXXXX 39147 Page 1 07/14/06--JHR After studying Chapter 12, you should be able to: Define the terms used when talking about the Web Create a Web

More information

We are looking at two kinds of server controls HTML server controls and ASP.NET web server controls.

We are looking at two kinds of server controls HTML server controls and ASP.NET web server controls. ASP.NET using an.aspx extension We are looking at two kinds of server controls HTML server controls and ASP.NET web server controls. HTML server controls: http://www.w3schools.com/aspnet/aspnet_refhtmlcontrols.asp

More information

Title: Sep 12 10:58 AM (1 of 38)

Title: Sep 12 10:58 AM (1 of 38) Title: Sep 12 10:58 AM (1 of 38) Title: Sep 12 11:04 AM (2 of 38) Title: Sep 12 5:37 PM (3 of 38) Click here and then you can put in the resources. Title: Sep 12 5:38 PM (4 of 38) Title: Sep 12 5:42 PM

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

Building Web Based Application using HTML

Building Web Based Application using HTML Introduction to Hypertext Building Web Based Application using HTML HTML: Hypertext Markup Language Hypertext links within and among Web documents connect one document to another Origins of HTML HTML is

More information

This will be a paragraph about me. It might include my hobbies, where I grew up, etc.

This will be a paragraph about me. It might include my hobbies, where I grew up, etc. Module 3 In-Class Exercise: Creating a Simple HTML Page Name: Overview We are going to develop our web-pages the old-fashioned way. We will build them by hand. Even if you eventually decide to use WYSIWYG

More information

Netscape Composer Tutorial

Netscape Composer Tutorial Netscape Composer Tutorial This tutorial will show you how to use Netscape Composer to create web pages. Netscape Composer integrates powerful What-You-See-Is-What-You-Get (WYSIWYG) document creation capabilities

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

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

Web Programming and Design. MPT Senior Cycle Tutor: Tamara Week 1 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

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

HTML. HTML Evolution

HTML. HTML Evolution Overview stands for HyperText Markup Language. Structured text with explicit markup denoted within < and > delimiters. Not what-you-see-is-what-you-get (WYSIWYG) like MS word. Similar to other text markup

More information

Chapter 4. Introduction to XHTML: Part 1

Chapter 4. Introduction to XHTML: Part 1 Chapter 4. Introduction to XHTML: Part 1 XHTML is a markup language for identifying the elements of a page so a browser can render that page on a computer screen. Document presentation is generally separated

More information

Beginning HTML. The Nuts and Bolts of building Web pages.

Beginning HTML. The Nuts and Bolts of building Web pages. Beginning HTML The Nuts and Bolts of building Web pages. Overview Today we will cover: 1. what is HTML and what is it not? Building a simple webpage Getting that online. What is HTML? The language of the

More information

request HTML Document send HTML Document

request HTML Document send HTML Document 1 HTML PROGRAMMERS GUIDE LESSON 1 File: HtmlGuideL1.pdf Date Started: Dec 14,1999 Last Update: March 15, 2003 ISBN: 0-9730824-0-2 Version: 1.0 LESSON 1 HTML PROGRAMMING FUNDAMENTALS Pre-resequites You

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

OU EDUCATE TRAINING MANUAL

OU EDUCATE TRAINING MANUAL OU EDUCATE TRAINING MANUAL OmniUpdate Web Content Management System El Camino College Staff Development 310-660-3868 Course Topics: Section 1: OU Educate Overview and Login Section 2: The OmniUpdate Interface

More information

Authoring World Wide Web Pages with Dreamweaver

Authoring World Wide Web Pages with Dreamweaver Authoring World Wide Web Pages with Dreamweaver Overview: Now that you have read a little bit about HTML in the textbook, we turn our attention to creating basic web pages using HTML and a WYSIWYG Web

More information

Review of HTML. Chapter Pearson. Fundamentals of Web Development. Randy Connolly and Ricardo Hoar

Review of HTML. Chapter Pearson. Fundamentals of Web Development. Randy Connolly and Ricardo Hoar Review of HTML Chapter 3 Fundamentals of Web Development 2017 Pearson Fundamentals of Web Development http://www.funwebdev.com - 2 nd Ed. What Is HTML and Where Did It Come from? HTML HTML is defined as

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

Management Information Systems

Management Information Systems Management Information Systems Hands-On: HTML Basics Dr. Shankar Sundaresan 1 Elements, Tags, and Attributes Tags specify structural elements in a document, such as headings: tags and Attributes

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

Chapter 4 A Hypertext Markup Language Primer

Chapter 4 A Hypertext Markup Language Primer Chapter 4 A Hypertext Markup Language Primer Learning Objectives Know the meaning of and use hypertext terms Use HTML tags to structure a document Use HTML tag attributes Use Cascading Style Sheets to

More information

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148 Index Numbers & Symbols (angle brackets), in HTML, 47 : (colon), in CSS, 96 {} (curly brackets), in CSS, 75, 96. (dot), in CSS, 89, 102 # (hash mark), in CSS, 87 88, 99 % (percent) font size, in CSS,

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

MPT Web Design. Week 1: Introduction to HTML and Web Design

MPT Web Design. Week 1: Introduction to HTML and Web Design MPT Web Design Week 1: Introduction to HTML and Web Design What will we do in this class? Learn the basics of HTML and how to create our own template Basic website structure Learn design concepts for a

More information

Using Dreamweaver CS3 to Create and Publish Simple Web Pages

Using Dreamweaver CS3 to Create and Publish Simple Web Pages Using Dreamweaver CS3 to Create and Publish Simple Web Pages Continuing Studies CS 38: Using Dreamweawver, Photoshop, and Fireworks Graphics Production for the Web January 2010 Continuing Studies CS 38

More information

Basic HTML Handout & Exercise Web Technology

Basic HTML Handout & Exercise Web Technology What is HTML? Basic HTML Handout & Exercise Web Technology 2015-2016 Hypertext Markup Language, or HTML for short, is what tells a web browser how a page should look. An HTML document contains two components:

More information

How to Edit Your Website

How to Edit Your Website How to Edit Your Website A guide to using your Content Management System Overview 2 Accessing the CMS 2 Choosing Your Language 2 Resetting Your Password 3 Sites 4 Favorites 4 Pages 5 Creating Pages 5 Managing

More information

Notes beforehand... For more details: See the (online) presentation program.

Notes beforehand... For more details: See the (online) presentation program. Notes beforehand... Notes beforehand... For more details: See the (online) presentation program. Topical overview: main arcs fundamental subjects advanced subject WTRs Lecture: 2 3 4 5 6 7 8 Today: the

More information

ITEC447 Web Projects CHAPTER 9 FORMS 1

ITEC447 Web Projects CHAPTER 9 FORMS 1 ITEC447 Web Projects CHAPTER 9 FORMS 1 Getting Interactive with Forms The last few years have seen the emergence of the interactive web or Web 2.0, as people like to call it. The interactive web is an

More information

HyperText Markup Language (HTML)

HyperText Markup Language (HTML) HyperText Markup Language (HTML) Mendel Rosenblum 1 Web Application Architecture Web Browser Web Server / Application server Storage System HTTP Internet LAN 2 Browser environment is different Traditional

More information

Introduction, Notepad++, File Structure, 9 Tags, Hyperlinks 1

Introduction, Notepad++, File Structure, 9 Tags, Hyperlinks 1 Introduction, Notepad++, File Structure, 9 Tags, Hyperlinks 1 Introduction to HTML HTML, which stands for Hypertext Markup Language, is the standard markup language used to create web pages. HTML consists

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

Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information.

Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information. Internet: An international network of connected computers. The purpose of connecting computers together, of course, is to share information. WWW: (World Wide Web) A way for information to be shared over

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

CREATING WEBSITES. What you need to build a website Part One The Basics. Chas Large. Welcome one and all

CREATING WEBSITES. What you need to build a website Part One The Basics. Chas Large. Welcome one and all Slide 1 CREATING WEBSITES What you need to build a website Part One The Basics Chas Large Welcome one and all Short intro about Chas large TV engineer, computer geek, self taught, became IT manager in

More information

Introduction to FrontPage 2002

Introduction to FrontPage 2002 Introduction to FrontPage 2002 Academic Computing Support Information Technology Services Tennessee Technological University August 2003 1. Introduction FrontPage 2002 is a program to help you build a

More information

Selected Sections of Applied Informatics

Selected Sections of Applied Informatics Selected Sections of Applied Informatics M.Sc. Marcin Koniak koniakm@wt.pw.edu.pl http://www2.wt.pw.edu.pl/~a.czerepicki Based on lecture: Dr inż. Andrzej Czerepicki a.czerepicki@wt.pw.edu.pl 2018 HTML

More information

FCKEditor v1.0 Basic Formatting Create Links Insert Tables

FCKEditor v1.0 Basic Formatting Create Links Insert Tables FCKEditor v1.0 This document goes over the functionality and features of FCKEditor. This editor allows you to easily create XHTML compliant code for your web pages in Site Builder Toolkit v2.3 and higher.

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

Introduction to Multimedia. MMP100 Spring 2017 thiserichagan.com/mmp100

Introduction to Multimedia. MMP100 Spring 2017 thiserichagan.com/mmp100 Introduction to Multimedia MMP100 Spring 2017 profehagan@gmail.com thiserichagan.com/mmp100 Troubleshooting Check your tags! Do you have a start AND end tags? Does everything match? Check your syntax!

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

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information