Indus University Lab INDEX Web Engineering

Indus University Lab INDEX Web Engineering

<p>Indus University Lab INDEX Web Engineering</p><p>Sr. No Date Title Sign</p><p>Introduction to Web pages and Technologies 1 09/09/15 (Web Form ,Web pages , MVC) Web Development Getting Started with ASP.NET 2 16/09/15 (Visual studio 2012 , Web matrix) </p><p>3 23/09/15 Building Web Pages And Web Sites With HTML 5, CSS. Building Web Pages And Web Sites With JavaScript, And 4 30/09/15 Server Scripting </p><p>5 07/10/15 Static Web Pages And Techniques WP References (WP classes , WP Security, WP 6 14/10/15 Database) </p><p>7 21/10/15 WP References( WP Web Mail , WP helpers) 8 28/10/15 ASP.NET Razor (introduction, syntax, Variable..)</p><p>9 04/11/15 ASP.NET (MVC Intro ,Application ,folder…) 10 11/11/15 MVC (Database ,Controllers.. )</p><p>11 18/11/15 Work with Web Form (Intro ,Pages, Control…)</p><p>12 25/11/15 Web Form (Event ,Form, View State …)</p><p>13 02/12/15 Web Form(Navigation , Hash tab ..) 14 09/12/12 Introduction of MVVM(Model View View Model) Concept Of Building Web, Web Certification, Web 15 15/12/15 Statistics</p><p>Marks Distribution</p><p>Lab Manual 15 Final lab 20 viva 15</p><p>1 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>LAB 1</p><p>Introduction to world wide web (www)</p><p>The world wide web is a set of many thousands of computers that are connected to the internet and serving web pages. These computers are usually controlled by a hosting company but in some cases can also be a personal server or business server that has web server software running.</p><p>Web server</p><p>A web server is the actual computer that is set up to serve web pages to the world through the internet. This takes a very fast internet connection because of the possibility of hundreds of people using the server and posted web sites at any given time.</p><p>Website A website is a group of web pages that have information in the various pages that contain similar subject materials. For instance, the web site would have a name (subject) such as GoodFords.com and have several pages related to good Ford vehicles. The website has a main web page commonly called the Homepage (index.html or default.html). The site's address will display the homepage and you can click on hyperlinks to go to other pages on the website.</p><p>Webpage A webpage is a text page written in a form of HTML (hyper text markup language) that contains text, links or tags that will display graphics, audio, video, downloadable files and of course other web pages. A web page is a page containing information on a subject. As in the above example, a page could be on Ford Mustangs, and another page in the same website, pertaining to Ford Web browser A web browser (Microsoft's Internet explorer or Mozilla's Firefox for example) is a program that translates the code that makes up a webpage (HTML) into a form that we can recognize. </p><p>Hyper links</p><p>2 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>A hyper link is usually shown as a blue underlined term on a web page that equates to another web page on the same website or another related website.</p><p>ASP.NET 4 is a development framework for building web pages and web sites with HTML, CSS, JavaScript and server scripting. ASP.NET 4 supports three different development models: Web Pages, MVC (Model View Controller), and Web Forms:</p><p>Web Pages MVC Web Forms</p><p>Single pages (SPA) model MVC model Event driven model</p><p>Similar to PHP and classic ASP (Model View Controller) Traditional ASP.NET</p><p>What is Web Pages? Web Pages is one of the 3 programming models for creating ASP.NET web sites and web applications. The other two programming models are Web Forms and MVC (Model, View, Controller). Web Pages is the simplest programming model for developing ASP.NET web pages. It provides an easy way to combine HTML, CSS, JavaScript and server code:</p><p> Easy to learn, understand, and use  Built around single web pages  Similar to PHP and Classic ASP  Server scripting with Visual Basic or C#  Full HTML, CSS, and JavaScript control Web Pages is easy extendable with programmable Web Helpers, including database, video, graphics, social networking and much more. Web Pages References At the end of this tutorial you will find a complete set of ASP.NET references with objects, components, properties and methods.</p><p>3 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>LAB 2</p><p>Introducing ASP.NET Web Pages - Getting Started</p><p>This guidance and application gives you an overview of ASP.NET Web Pages (version 2 or later) and Razor syntax, a lightweight framework for creating dynamic websites. It also introduces WebMatrix, a tool for creating pages and sites.</p><p>Level: New to ASP.NET Web Pages. Skills assumed: HTML, basic cascading style sheets (CSS). What you'll learn in the first tutorial of the set:</p><p> What ASP.NET Web Pages technology is and what it's for.  What WebMatrix is.  How to install everything.  How to create a website by using WebMatrix.</p><p>Features/technologies discussed:</p><p> Microsoft Web Platform Installer.  WebMatrix.  .cshtml pages</p><p>Mike Pope originally wrote this tutorial. Tom FitzMacken updated it for Microsoft WebMatrix 3.</p><p>Software versions used in the tutorial What Should You Know? We're assuming that you're familiar with:</p><p> HTML. No in-depth expertise is required. We won't explain HTML, but we also don't use anything complex. We'll provide links to HTML tutorials where we think they're useful.</p><p> Cascading style sheets (CSS). Same as with HTML.</p><p> Basic database ideas. If you've used a spreadsheet for data and sorted and filtered the data, that's the level of expertise we're generally assuming for this tutorial set. We're also assuming that you're interested in learning basic programming. ASP.NET Web Pages use a programming language called C#. You don't have to have any background in programming, just an interest in it. If you've ever written any JavaScript in a web page before, you've got plenty of background.</p><p>4 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>Note that if you are familiar with programming, you might find that this tutorial set initially moves slowly while we bring new programmers up to speed. As we get past the first few tutorials, though, there will be less basic programming to explain and things will move along at a faster clip.</p><p>What Do You Need? Here's what you'll need:</p><p> A computer that is running Windows 8, Windows 7, Windows Server 2008, or Windows Server 2012.  A live internet connection.  Administrator privileges (required for the installation process). What Is ASP.NET Web Pages? ASP.NET Web Pages is a framework that you can use to create dynamic web pages. A simple HTML web page is static; its content is determined by the fixed HTML markup that's in the page. Dynamic pages like those you create with ASP.NET Web Pages let you create the page content on the fly, by using code.</p><p>Dynamic pages let you do all sorts of things. You can ask a user for input by using a form and then change what the page displays or how it looks. You can take information from a user, save it in a database, and then list it later. You can send email from your site. You can interact with other services on the web (for example, a mapping service) and produce pages that integrate information from those sources.</p><p>What is WebMatrix? WebMatrix is a tool that integrates a web page editor, a database utility, a web server for testing pages, and features for publishing your website to the Internet. WebMatrix is free, and it's easy to install and easy to use. (It also works for just plain HTML pages, as well as for other technologies like PHP.)</p><p>You don't actually have to use WebMatrix to work with ASP.NET Web Pages. You can create pages by using a text editor, for example, and test pages by using a web server that you have access to. However, WebMatrix makes it all very easy, so these tutorials will use WebMatrix throughout.</p><p>5 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>LAB #03 Building Web Pages And Web Sites With HTML 5 Introduction</p><p>Basic Tags Tags are elements of the HTML language. Almost every kind of tag has an opening symbol and a closing symbol. For example, the <HEAD> tag identifies the beginning of heading information. It also has a closing tag </HEAD>. <HTML></HTML> This element tells browsers that the file is a HTML document. Each HTML document starts with the tag <HTML>. This tag should be first thing in the document. It has an associate closing tag </HTML> which must be the last tag in the file. <HEAD></HEAD> The head contains important information about the document. <TITLE></TITLE> The title tag is an important tag. It is used to display a title on the top of your browser window. Both the opening and the closing tags go between the head tags.</p><p><html> <head> <title>John's Homepage</title> </head> <body> </body> </html> <META> Another tag that can be added in the head is a <META> tag. It is used to help search engines index a page. There are several different meta names. <META NAME="author" CONTENT="Nongjian Zhou"></p><p><META NAME="description" CONTENT="A very easy tutorial for HTML beginners"></p><p>The keyword meta. Note that always separate Keywords with a comma:</p><p><META NAME="keyword" CONTENT="html,tutorial,beginner,web design"></p><p>The following example shows how these tags are coded: 6 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><head> <title>HTML For Beginners</title> <meta name="Author" content="Nongjian Zhou"> <meta name="Description" content="A very easy tutorial for HTML beginners"> <meta name="Keywords" content="html,tutorial,beginner,web design"> </head> <BODY></BODY> The Body Tag is used to identify the start of the main portion of your webpage. Between <BODY> </BODY> tags you will place all images, links, text, paragraphs, and forms. We will explain each tag that is used within the body of the HTML file. Character, Paragraph and Position <H#></H#> There are six levels of headings, numbered 1 through 6. These tags are used for the characters in the outlines. The biggest heading is <H1> and smallest one is <H6>:</p><p><H1>Biggest text</H1> ...... </p><p><H6>smallest text</H6> <P></P> Paragraph tags (<P> opening tag and </P> closing tag) allow you to place a paragraph. For example: <p>Basic Information</p></p><p>Align The defaulted position is left justification. You can also use "ALIGN" for justification: </p><p><p ALIGN="center"> Paragraph will be centered</p> <p ALIGN="left"> Paragraph will be left justified</p> <p ALIGN="right">Paragraph will be right justified</p> <CENTER></CENTER> This kind of tags have capability of allowing you to center the text on the homepage.</p><p><center><p> Paragraph will be centered</p></center> <BR> This tag break whatever to be on the next line. The following is an example: 7 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><p>Welcome To<br> My Homepage!</p> <HR> This tag adds a horizontal line or divider to your web site. An <HR> tag makes the following divider: The <hr> tag can be set as:</p><p><hr width="450" align="right" size="5"> &nbsp; You can add spaces in your text by using &nbsp;. <BLOCKQUOTE></BLOCKQUOTE> You can use this tag to format or remove a text by movinging both the left and right sides of the paragraph.</p><p><BLOCKQUOTE> <H1>Welcome To John's Homepage!</H1> <p>Content</p> <p>Basic Information</p> </BLOCKQUOTE></p><p>8 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>Character Style Character styles include physical and logical character styles, and Face, Size, and Color. The following is character style table. Type Choice function</p><p><B> Make text bold.</p><p><I> Make text italic.</p><p><U> Make text underline. Physical <Strike> Make text strikethrough. styles <Sup> Make text superscript.</p><p><Sub> Make text subscript.</p><p>Teletype Make text teletype.</p><p><Strong> Indicate the text is very important.</p><p><Em> Indicate the text is important.</p><p><Cite> Indicate that the text is from a book or other document.</p><p>Logical <Address> Indicate that the text is an address. styles <Dfn> Indicate that the text is a definition.</p><p><Samp> Indicate that the text is a sequence of literal characters.</p><p>Keyboard Indicate that the text is keyboard input.</p><p><Var> Indicate that the text is a variable.</p><p>The tags below have the effect shown on the text in between.</p><p><U>underlined text</U> <B>bold text</B> <I>Italicized text</I> <BIG><big>Big text</big></BIG> <SMALL>small text</SMALL> <TT>Monospaced typewriter text</TT> <BLINK><blink>blink</blink></BLINK> (Note: This only works on Netscape) <SUB>This <sub>makes a subscript.</sub></SUB> <SUP>This<sup> makes a superscript.</sup></SUP></p><p>9 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><STRIKE>strikeout</STRKE> <FONT FACE="Arial">This is a test</FONT> <FONT COLOR="#00FF00">Text is in the color of Green</FONT> <FONT SIZE="+2">This is a test</FONT> <BASEFONT> You may use this tag to set default font face, size or color for your page and save your time of coding. For example:</p><p><basefont face="Arial" size="7" color="red"> Lists There are three kinds of lists in HTML:</p><p>Unordered lists <UL></UL> Unordered Lists This list starts with an opening list <UL> tag and ends the list with a closing list </UL> tag. Between the <UL> and </UL>, you enter the <LI> (list item) tag followed by the individual item; no closing </LI> tag is needed. For example:</p><p><UL> <LI> Name <LI> Phone <LI> ID </UL> o Name o Phone o ID</p><p>Ordered Lists An orderered list is similar to an unordered list, except it uses <OL> instead of <UL>:</p><p><OL> <LI>College <LI>Hight School <LI>Elemantory School </OL></p><p>The output is: 1. College 2. Hight School 3. Elemantory School 10 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>Definition Lists A definition list starts with <DL> and ends with </DL>. This list consists of alternating a definition term and a definition definition. The definition term is enclosed in <DT> </DT> and should precede the definition definition. The definition definition is enclosed in <DD> </DD>. So, a whole definition list looks like:</p><p><DL> <DT> term </DT> <DD> definition </DD> ... <DT> term </DT> <DD> definition </DD> </DL> Links Links allow you to navigation from one page to another on the internet or in your local machine. Before you add a link to your page you need a URL of another web site or a path of your local file that you want to link to. The link tag also provides the capability to provide a way for linking an e-mail address. To link to another file in your current dictionary, use <A HREF="name.html"> anchor text </A>. For example:</p><p><A HREF="bscInfo.html">Basic Information</A></p><p>If you want to link to a file that in another dictionary, you can write the code like this:</p><p><A HREF="path/name.html">Text</A></p><p>You can create links from your webpage to other webpages on internet:</p><p><A HREF="http://internetcollege.virtualave.net/">Internet College</A></p><p>If you want link to the an email address and when you click it, then start the mail program, you can write the a link like this:</p><p><A HREF="mailto:[email protected]">Email us</A></p><p>You can link to any place in other documents by the same way:</p><p><A HREF="people.html#F3">Faculty Infomation</A></p><p>You also can link a part of another page on the Internet if you can put a pointer <A NAME=""> in it:</p><p><A HREF="http://server/path/file#F3"> Image Most Web browsers can display images that are in GIF, or JPEG format. To include an image, enter:</p><p>11 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><IMG SRC="ImageName"> For example: <IMG SRC="monky.gif"> The <IMG> tag is used to define an image. This tag does not have a closing tag. The IMG part tells the browser to add an image, The SRC tells your browser where to find the image. You should include two other attributes on <IMG> tags to tell your browser the size of the images. The HEIGHT and WIDTH attributes let your browser set aside the appropriate space (in pixels) for the images. For example: <IMG SRC="monky.gif" HEIGHT=80 WIDTH=100></p><p>You can put an image in the left or right of a page by using ALIGN.. For example:</p><p><IMG SRC="ImageName" ALIGN="right"></p><p>By default the bottom of an image is aligned with the following text. You can align images to the top, bottom or middle of a paragraph by using one of three things: TOP, MIDDLE, BOTTOM, For example:</p><p><IMG SRC="monky.gif" ALIGN="top"></p><p>Note: You must use "align", not "valign" to set for TOP, MIDDLE, BOTTOM. It's different from the table alignment. We can use "vspace" and "hspace" to adjust space around the picture: <IMG SRC="monky.gif" vspace="50" hspace="80"> The ALT attribute is one of IMG attributes. You can use the ALT attribute to specify text to be displayed instead of an image. For example:</p><p><IMG SRC="monky.gif" ALT="[monky]"></p><p>In this example, if someone cannot see the image, at least they will be able to read the name of the image and know that it would be a monky because the words "[monky]" is shown in the place. An image can be used as hyperlinks just like plain text. The following is the HTML code:</p><p><A HREF="animal.html"><IMG SRC="monky.gif"></A></p><p>The blue border that surrounds the image indicates that it's a clickable hyperlink. If you do not want to display this border, you can add the BORDER attribute and setting it to zero:</p><p><A HREF="animal.html"><IMG SRC="monky.gif" BORDER=0></A></p><p>You can load an image from another webpage to your page. To display a image on some one else's page, you need to find the URL:</p><p><IMG SRC="http://www.abcd.com/image2.gif"></p><p>You also can use an image as a background. The tag to include a background image is included in the <BODY> statement as an attribute:</p><p><BODY BACKGROUND="ImageName"></p><p>12 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>A large inline image would slow down the loading of the main document. To avoid it, you may have an image open as an external image. To include a reference to an external image, enter:</p><p><A HREF="ImageName">link anchor</A></p><p>You can also use a smaller image as a link to a larger image. Enter:</p><p><A HREF="LargerImageName"><IMG SRC="SmallImageName"></A> Color You may want to have a specific color for the background, text, links, visited links, and active links. In HTML, Colors are coded as a 6 digit hex RGB (red, green, blue) number. A hexadecimal value in the range 00-FF. For example, 000000 is black (no color at all), FFFFFF is white (fully saturated with all three colors). FF0000 is bright red, 0000FF is bright blue, and 00FF00 is pastel green. You must have the "#" sign before the actual code. You can use the attributes of the <BODY> tag to change the color of text, links, vlinks (visited links), and alinks (active links). For example:</p><p><BODY bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800000" alink="#808000"></p><p>You can also use the name of the color instead of the corresponding RGB value to indicate some basic colors. For example, "black", "red", "blue", and "green" are all valid for use in place of RGB values. Coloring specific text is done very much like changing the font size. The tag is like:</p><p><FONT color="code"> text </FONT></p><p>This tag can be combined with the font size. For example:</p><p><FONT color="#00FF00" size="+3"> text </FONT> Table The format of table is:</p><p><TABLE> <TR> <TD> Table Entry </TD> ... <TD> Table Entry </TD> </TR> ... <TR> <TD> Table Entry </TD> ... <TD> Table Entry </TD> </TR> </TABLE></p><p>The whole table is opened and closed with <TABLE> </TABLE>. Each row is encapsulated in <TR> </TR>. Within the row are cells, enclosed in <TD> </TD>. There can be as many rows and columns as you want and as will fit on the screen. The browser will autoformat the rows, vertically centering cell contents if necessary. If you want a cell to span more than one</p><p>13 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering column, enclose it in <TD COLSPAN=X> </TD>, where X indicate the number of columns to span. Similarly, <TD ROWSPAN=X> </TD> will cause the cell to span X rows. A border can be placed around all the cells by using <TABLE BORDER=X> </TABLE>, where X is the number of pixels thick the border should be. Let's see an example:</p><p><CENTER><TABLE BORDER=1 WIDTH="62%" HEIGHT=90> <TR> <TD WIDTH=82><CENTER> Name</CENTER></TD> <TD WIDTH=111><CENTER>Phone</CENTER></TD> <TD WIDTH=91><CENTER>ID</CENTER></TD> </TR> <TR> <TD WIDTH=82><CENTER>John Lee</CENTER></TD> <TD WIDTH=111><CENTER>456-968</CENTER></TD> <TD WIDTH=91><CENTER>276580</CENTER></TD> </TR> <TR> <TD WIDTH=82><CENTER>Cherry Heitz</CENTER></TD> <TD WIDTH=111><CENTER>789-326</CENTER></TD> <TD WIDTH=91> <CENTER>908743</CENTER></TD> </TR> </TABLE></CENTER></p><p>Name Phone ID</p><p>John Lee 456-968 276580</p><p>Cherry Heitz 789-326 908743</p><p>The value of width and height can be "xx%" or XX. For example: WIDTH="80%" or WIDTH=450. "xx%" allow the table size changing while the window size is changing. The value of Border can be zero. In this case, the table will have no border. You can make a table looking like this: The following is the code of this table.</p><p><TABLE BORDER=10 CELLSPACING=10 CELLPADDING=2> <TR><TD></TD><TD></TD></TR> <TR><TD></TD><TD></TD></TR> </TABLE></p><p>Input You can use "input" for single line information:</p><p><INPUT TYPE="input" NAME=name SIZE=##></p><p>For example:</p><p>14 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><INPUT TYPE="input" NAME="email" SIZE=26>Your Email Address <INPUT TYPE="input" NAME="name" SIZE=26>Your Name <INPUT TYPE="input" NAME="subject" SIZE=26>Subject</p><p>Here is what the result shows:</p><p><input size="26" name="email" /> Your Email Address <input size="26" name="firstname" /> Your Name <input size="26" name="subject" /> Subject</p><p>The value of size is in characters, so "SIZE=26" means the width of the input box is 26 characters. Text Area Text Area can be as big as you'd like. Text Area begins with <TEXTAREA NAME=name ROWS=## COLS=##>and end with </TEXTAREA>. For example:</p><p><TEXTAREA Rows=2 Cols=25 NAME="comments"></TEXTAREA></p><p>The result is:</p><p><textarea cols="25" name="comments" /></p><p>Radio Button You can use radio buttons to ask a question with one answer. For example, if you wanted to ask "Which picture do you like?" and you wanted to have the choices "monky", "flower", "girl", "building", you would type:</p><p><INPUT TYPE="radio" checked NAME="picture" VALUE="monky">Monky<P> <INPUT TYPE="radio" NAME="picture" VALUE="flower">Flower<P> <INPUT TYPE="radio" NAME="picture" VALUE="girl">Girl<P> <INPUT TYPE="radio" NAME="picture" VALUE="building">Building<P></p><p>The Result is:</p><p><input checked="true" type="radio" name="picture" /> Monky <input type="radio" name="picture" /> Flower <input type="radio" name="picture" /> Girl <input type="radio" name="picture" /> Building Check Box Checkboxes let the user check things from a list. The form is:</p><p><INPUT TYPE="checkbox" NAME="name" VALUE="text"></p><p>15 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>Notice that the difference between check boxes and radio buttons is that any number of check boxes can be checked at one time while only one radio button can be checked at a time. For example, if you wanted to ask "Which picture do you like?" and you allow any number of check boxes can be checked at one time, you would type:</p><p><INPUT TYPE="checkbox" NAME="picture" VALUE="monky">Monky<P> <INPUT TYPE="checkbox" NAME="picture" VALUE="flower">Flower<P> <INPUT TYPE="checkbox" NAME="picture" VALUE="girl">Girl<P> <INPUT TYPE="checkbox" NAME="picture" VALUE="building">Building<P></p><p>The result is:</p><p>Which picture do you like? <input type="checkbox" name="picture" /> Monky <input type="checkbox" name="picture" /> Flower <input type="checkbox" name="picture" /> Girl <input type="checkbox" name="picture" /> Building Submit and Reset Other button types include submit and reset. "submit" is the button the user presses to send in the form. "reset" clears the entire form so the user can start over. For example:</p><p><INPUT TYPE="submit" NAME="submit" VALUE="Send"> <INPUT TYPE="reset" NAME="reset" VALUE="Clear"></p><p>The result is:</p><p><input type="submit" name="submit" /><input type="reset" name="reset" /></p><p>Password This type allows users to type in text but instead of displaying the text that they type astericks are displayed instead:</p><p><INPUT TYPE="password" NAME="pass" SIZE="20"> Pull-Down Menu You can ask a question with only one answer is by using a pull-down menu. For example:</p><p>How old are you? <SELECT NAME="age"> <OPTION>1-15 <OPTION SELECTED >16-21 <OPTION>22-30 <OPTION>31-45 <OPTION>46-65</p><p>16 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><OPTION>66-80 <OPTION>81-up </SELECT> How old are you? <select size="1" name="age"> <option>1-15</option></p><p>Scroll-Down Menu Ther are two kinds of scroll-down menus. One is that you can only select one item:</p><p>How old are you? <SELECT NAME="age" SIZE=5> <OPTION VALUE="1-15">1-15 <OPTION VALUE="16-21">16-21 <OPTION VALUE="22-30">22-30 <OPTION VALUE="31-45">31-45 <OPTION VALUE="46-65">46-65 <OPTION VALUE="66-80">66-80 <OPTION VALUE="81-up">81-up </SELECT></p><p>The result is:</p><p>How old are you? <select size="5" name="age"> <option value="1-15">1-15</option> The other menu is that you can select one or more items by holding down shift. For example: What is your favorite thing? (Hold <i>shift</i> to select more that one) <SELECT NAME="reading" MULTIPLE size="3">reading <OPTION VALUE="sports">sports <OPTION VALUE="travelling">travelling <OPTION VALUE="music">music <OPTION VALUE="cooking">cooking <OPTION VALUE="shopping">shopping <OPTION VALUE="talking">talking </SELECT><P></p><p>Frame With frames, you can put a number of HTML pages into a single window, each of frame can display a page. frames start and end with the <FRAMESET></FRAMSET> tags. The <FRAMESET> tag can have two modifiers: ROWS and COLS to define how big the frames will be. For example: ml> <head><title></title></head> </p><p>17 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><frameset rows="64,*"> <frame name="banner" scrolling="no" noresize target="contents" src="top.htm"> <frameset cols="150,*"> <frame name="contents" target="main" src="menu.htm"> <frame name="main" src="home.htm"> </frameset> <noframes> <body> <p>This page uses frames, but your browser doesn't support them.</p> </body> </noframes> </frameset> </html> Task</p><p>Q) Create a CV by using HTML codes and syntax.</p><p>Lab 4</p><p>Building Web Pages And Web Sites With CSS</p><p>Introduction</p><p> Working With HTML5 Audio And Video Tags  CSS3 Text Effects (Outline, Shadow, Wrap, Etc.)  CSS3 2D And 3D Transforms  CSS3 Transitions  CSS3 Animations Background If you are a beginner, it's highly recommended to read through the following articles to understand more about the HTML and CSS.</p><p>Working with HTML5 Audio and Video tags</p><p>HTML5 Video Tag 18 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>Prior to HTML5 video tags, if you wish to embed a video in an HTML document, most people used Adobe Flash to show a video regardless of browsers and operating system. But it required a flash plug-in which is a dependency. Other handful third party plug-ins include RealPlayer, Quicktime. With HTML5, an open standard was created to support for audio and video tag and can be easily included. More than that the new standard removed the proprietary third party dependency. HTML5 supports new tags for including audio and video tags in HTML document. It can be done easily like we include images in a document. A new <video> tag was introduced to show up videos in a HTML document. Below is an example shows how we can embed a video Hide Copy Code</p><p><video src="sampleVideo.mp4" width="500" height="400" controls> Your browser does not support video element. </video></p><p>If the HTML5 video tag is supported by the browser, it will show up the media player and you can play, pause a video. Say if your browser does not support HTML5, you will see a label indicating “Your browser does not support video element”. We need a fallback mechanism to play a video if the browser does not support video elements. We can have the default fallback mechanism as Flash. Here's the code snippet shows the usage of video element with a fallback.</p><p><video src="Testvideo.mp4" controls> <object data="Testvideo.swf" type="application/x-shockwave-flash"> <param value="Testvideo.swf" name="Test Movie"/> </object> </video></p><p>Also there are cases where the browser supports video element but it may not support the video format. In such cases, it's always good to add multiple formats of same video so either one of the supporting formats can be used as a fall back mechanism in case the browser does not support one of them.</p><p>Below is an example which demonstrates the fallback mechanism which also includes Flash an an option.</p><p><video controls> <source src="TestVideo.webm" type='video/webm;codecs="vp8, vorbis"'/> <source src="TestVideo.mp4" type='video/mp4;codecs="avc1.42E01E, mp4a.40.2"'/> <object data="Testvideo.swf" type="application/x-shockwave-flash"> <param value="Testvideo.swf" name="Test Movie"/> </object> </p><p>19 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p></video></p><p>In the below example you can see a video tag with multiple sources (Most popular codec formats)</p><p><video id="TestMovie" width="750" height="350" preload controls> <source src="TestMovie_H264.mov" /> <source src="TestMovie_Ogg.ogv" /> <source src="TestMovie_WebM.webm" /> </video></p><p>Here's a live example of a HTML5 video. You can notice the controls to play, pause etc are shown by default that's because of the usage of “controls” in video tag. The below example is based on HTML5 Rocks demo [2] <video preload="metadata" controls> <source src="http://html5demos.com/assets/dizzy.mp4" type="video/mp4"> <source src="http://html5demos.com/assets/dizzy.webm" type="video/webm"> <source src="http://html5demos.com/assets/dizzy.ogv" type="video/ogg"> </video></p><p>Let us see how we can add tracks to our video. Tracks are nothing but subtitles that will be displayed at the bottom of the video and is corresponding to the video being played. Below is how we can add tracks.</p><p><video src="foo.ogv"> <track kind="subtitles" label="English subtitles" src="http://www.html5rocks.com/en/tutorials/track/basics/treeOfLife/tracks/developerS tories-subtitles-en.vtt" srclang="en" default></track> </video></p><p>You can just navigate to the track source (src) to see format of the track file. Here's how it looks like. Isn't it meaningful and readable? The track file has cue which is nothing but a time interval; the start and end time which is separated by an arrow mark.</p><p>20 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>HTML5 Audio Tag Now it's learn about HTML5 audio tag. We use <audio> element in HTML5 to represent a sound content in HTML document. All we need to do is set the source with the URL of the audio.</p><p>The HTML5 audio has a similar properties as that of a video tag.</p><p>Quote: The HTML5 Audio properties are based on [3]</p><p> controls – Shows up the audio controls that can be used to play/stop/pause the audio.  autoplay – The autoplay property lets the audio to be played automatically when the page gets loaded.  loop – When used repeats the music.  src – The source (URL) of the audio file.  preload – The preload can be set with one of the below values. o ?none - which means do not buffer the audio file automatically. o auto - buffers the audio file before it gets played. o metadata – buffers only the audio metadata. Currently the recent browsers which are based on WebKit such as Chrome, Safari supports *.mp3 files. The audio format *.ogg is an open standard and is supported by most of the browsers except Microsoft IE. Here's an example demonstrates the usage of audio tag</p><p><!DOCTYPE HTML> <html lang="en"> <head> <meta charset=utf-8> <title>HTML5 audio</title> </head> <body> <audio controls="controls"> <source src="example.mp3" type="audio/mpeg" /> Your browser does not support the audio element. </audio> </body> </html></p><p>Here's a real world example of the usage of audio tag. You can notice here we are using flash *.swf as a default fall back mechanism.</p><p><audio id="AudioWithControls" controls=""> 21 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><source src="http://www.html5rocks.com/en/tutorials/audio/quick/test.mp3" type="audio/mpeg"> <source src="http://www.html5rocks.com/en/tutorials/audio/quick/test.ogg" type="audio/ogg"> <object class="playerpreview" type="application/x-shockwave-flash" data="http://www.html5rocks.com/en/tutorials/audio/quick/player_mp3_mini.swf" width="200" height="20"> <param name="movie" value="http://www.html5rocks.com/en/tutorials/audio/quick/player_mp3_mini.swf"> <param name="bgcolor" value="#085c68"> <param name="FlashVars" value="mp3=http://www.html5rocks.com/en/tutorials/audio/quick/test.mp3"> <embed href="http://www.html5rocks.com/en/tutorials/audio/quick/player_mp3_mini.swf" bgcolor="#085c68" width="200" height="20" name="movie" align="" type="application/x-shockwave-flash" flashvars="mp3=http://www.html5rocks.com/en/tutorials/audio/quick/test.mp3"> </object> </audio></p><p>Now let us see how to add tracks to our audio. Below is the example you can see the source language is English. You could have multiple tracks in multiple languages.</p><p><!-- Audio playback with captions --> <audio src="test.ogg"> <track kind="captions" src="test.en.vtt" srclang="en" label="English"> </audio></p><p>CSS3 Text Effects (Outline, Shadow, Wrap, etc.) CSS3 Outline Let us learn about CSS3 outlines. The text-outline has a thinkness, blur and color values out of which blur is optional. An outline is defined as below. Hide Copy Code outline: { [ outline-width ] [ outline-style ] [ outline-color ] | inherit } an outline is usually drawn outside of the border. Unlike border, the outline color and width cannot be set to individual edges around the element border. Also adding outlines will not cause any disturbance in the flow of the document and won't cause any overflow.</p><p>Example of an outline. In the below example an outline of 3px solid with orange color is drawn when the user focus an anchor (<a>) tag. #outlineExample a:focus { outline: 3px solid orange;</p><p>22 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>}</p><p>If you wish to explicitly set the outline , here's how one can do. Hide Copy Code</p><p># outlineExample a:focus { outline-color: orange; outline-width: 5 px; outline-style: solid; }</p><p>Here's an example on how to apply outline Hide Copy Code</p><p><!DOCTYPE html> <html> <style> body{ font-size: 24px; background: orange; } #outlineExample { outline-color: orange; outline-width: 5px; outline-style: solid; } </style> <body> <h1>Outline Example</h1> <a id="outlineExample" href="http://codeproject.com">Welcome to CodeProject</a> </body> </html></p><p>Note – The surrounding outline might look like border but it's not. Below is the modified style with border.</p><p>#outlineExample { outline-color: orange; outline-width: 5px; outline-style: solid; border-width: 5px; border-color: red; border-style:solid;</p><p>23 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>} </p><p>CSS3 Text shadows Let us learn about text shadows by setting the appropriate value to text-shadow property. We will see how to create one with an example. Here's how we can use. The below one creates a shadow with -2px horizontal offset , 2px vertical offset , blurs by 3px and applies orange red color. h1 { text-shadow: -2px 2px 3px #FF4040 ; }</p><p>Here's a neon style were you can see below how it creates a glowing heading text.</p><p>#neon { text-align: center; margin: 200px auto; font-family: "Museo"; font-size: 150px; /* text-transform: uppercase; */ color: #fff; text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #FF6103, 0 0 70px #FF6103, 0 0 80px #FF6103, 0 0 100px #FF6103, 0 0 150px #FF6103; }</p><p>When it comes to browser support, unfortunately IE 6, 7 and 8 don't have support for text- shadow.</p><p>CSS3 Word Wrapping Let us now try to understand and set the word-wrap property to set the word wrapping say for a <p> paragraph tag. The word wrapping allows long words which are unbreakable to be broken down in to multiple lines. Below is the word wrap syntax word-wrap: normal|break-word|initial|inherit; </p><p>Here's an example of word wrapping. Note we have some text with in the paragraph (<p>) but the paragraph is set with width as 400px and applied with various other styles but we 24 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering are more interested in word wrapping. You can notice the words does not overflow but it breaks down that's because of this style word-wrap:break-word; <!DOCTYPE html></p><p><html> <head> <style> body{ background: orange; } p.wordwrap { width:400px; font-size: 24px; color: white; border:1px solid red; word-wrap:break-word; } </style> </head> <body> <h2> Word Wrapping Example </h2> <p class="wordwrap"> Each week's two winning article authors will take home a CodeProject Prize Pack that includes: a free 5-year Pro Account subscription to CodeProject Workspaces, a CodeProject t-shirt, and two vinyl, die cut Bob stickers.</p> </body> </html></p><p>CSS3 Text Transformation One can use text transformation value like uppercase and lowercase to transform a text to upper or lower case characters. Also you can use capitalize to make the first letter of each word in CAPS. Here's the syntax for applying text transformation. text-transform: uppercase | lowercase | capitalize | none | inherit Example <html> <head> h2 { text-transform: capitalize } p.lowercase { text-transform: lowercase } p.none { text-transform: none } p.uppercase { text-transform: uppercase } </head> 25 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p><body> <h2>article 5: getting fancy with hTML5 & cSS3</h2> <ul> <li><p class="uppercase">CSS3 Transitions</p></li> <li><p class="lowercase">CSS3 Animations</p></li> <li><p class="none">CSS3 Text Effects (Outline, Shadow, Wrap, etc.) </p></li> </ul> </body> </html></p><p>Summary of CSS3 Text We have seen how to apply CSS in changing the appearance of a text. The CSS allows us to do all sorts of things like changing the word wrapping, creating shadows, do text transformation, create outlines, border around the text. In addition the above things, the CSS also provides other capabilities like controlling changing text direction, apply text decorations, indentation and alignment of texts, spacing between words and letters, align text and apply line breaking and much more.</p><p>CSS3 2D and 3D Transforms The CSS3 Transformation allows us to transform an element to an extent such as scaling, rotating, translating and skewing. Below is the official W3 Syntax for transformation transform: method(value);</p><p>However, the browser vendors came up with their own version of transformation. In order to make the transformations compatible, we have to use the vendor prefix based transformation. </p><p>/* Chrome & Safari 3.2+ */ -webkit-transform: method(value);</p><p>/* Internet Explorer 9.0+ */ -ms-transform: method(value); </p><p>/* Opera 10.5+ */ -o-transform: method(value); </p><p>/* Firefox 3.6+ */ -moz-transform: method(value);</p><p>Now let us look into some of the transformation function available.</p><p>26 Instructor: Muhammad Saddam Khokhar Indus University Lab INDEX Web Engineering</p><p>Translate – The translate function moves the element from it's current position (x, y) to new position as specified to the translate function. You may ecall the co-ordinate system that we studied in school. Here's an example where we apply translation to a div which moves the element by x-axis by 50px and y-axis by -100px. transform: translate(50px, -100px)</p><p>Rotate – The rotate function is used to rotate an element with an angle specified. We can specify the rotation amount by degrees or radians with a positive or negative value. The positive value is used to rotate an element clockwise and the negative value for counter clock wise.</p><p>Here's an example which rotates an element clockwise by 30deg. transform: rotate(30deg)</p><p>Scale – The scale function is used to adjust the element by a specific factor. The scale function takes one or two parameters. If you are specifying one value, the element gets scaled equally both horizontally and vertically axes. When you are specifying two values, the elements horizontal and vertical axes gets scaled separately. Here's an example which scales an element 3 by horizontal axes and 3 by vertical axes. transform: scale(3, 3) Let us learn with an example to understand how to perform scaling. The below sample scales the div containing image by 3 times.</p><p>Skew – The skew function is used to stretch an element. It takes two parameters one to stretch with an angle in x axes and the other in y axes. Here's an example for skewing. We skew the div containing bob image by 30deg stretch by x and y axis.</p><p>Task</p><p>Q) Create a CV by using CSS codes and syntax.</p><p>27 Instructor: Muhammad Saddam Khokhar</p>

View Full Text

Details

  • File Type
    pdf
  • Upload Time
    -
  • Content Languages
    English
  • Upload User
    Anonymous/Not logged-in
  • File Pages
    27 Page
  • File Size
    -

Download

Channel Download Status
Express Download Enable

Copyright

We respect the copyrights and intellectual property rights of all users. All uploaded documents are either original works of the uploader or authorized works of the rightful owners.

  • Not to be reproduced or distributed without explicit permission.
  • Not used for commercial purposes outside of approved use cases.
  • Not used to infringe on the rights of the original creators.
  • If you believe any content infringes your copyright, please contact us immediately.

Support

For help with questions, suggestions, or problems, please contact us