Which of the following is/are a valid value for the type attribute of the input tag? a. text. b. icon. c. reset. d. password

Size: px
Start display at page:

Download "Which of the following is/are a valid value for the type attribute of the input tag? a. text. b. icon. c. reset. d. password"

Transcription

1 Which of the following is/are a valid value for the type attribute of the input tag? a. text b. icon c. reset d. password Which of the following is true for the <param> tag in HTML 4.01? a. It does need a closing tag. b. The language attribute cannot be specified with it. c. The name and type attributes are optional. d. The class, id, and title attributes can be specified for it. You do not want the user to resize the frame. The code should be: You are designing a website for one of your clients. You have to use an applet named cal.class to show a scrollable calendar. Which of the following is the recommended way of calling it if you are using HTML 4.01? a. <frame src="mypage.html" name="homepage" scrolling=yes resize="false"> b. <frame src="mypage.html" name="homepage" scrolling=yes resize="true"> c. <frame src="mypage.html" name="homepage" scrolling=yes noresize="true"> d. <frame src="mypage.html" name="homepage" scrolling=yes noresize="noresize"> a. <applet code="cal" width="180" height="180"></applet>

2 b. <img src="cal"></img> c. <object classid="appid" id="cal" width="180" height="180"></object> d. <sub id="cal"></sub> The tag that is used to pass the parameters to an applet is: a. Appletpar b. Applet c. Param d. Val A computer programming book has to go online. Which of the following tags is ideal for displaying the program snippets? a. <emp> b. <code> c. <dfn> d. <cite> Which of the following is not correct for an action attribute for a form tag? a. The action attribute can be defined at runtime. b. If the value for action is null (action=""), then the form submits user data to itself.

3 c. If the URL is not provided to the action attribute, the form will not submit user data anywhere. d. None of the above You have the following directory structure. webroot->products->ordered->delivered The products directory has a page called Products.html and the delivered directory has a page called Delivered.html. You want to provide a link to the Products page on Delivered.html. The ideal code should be: a. <a href="././products.html"> All Products </a> b. <a href="../../products.html"> All Products </a> c. <a href=".../.../products.html"> All Products </a> d. <a href="../products.html"> All Products </a> e. <a href="products.html"> All Products</a> Which of the following tags within a table can be used to set the properties of one column or a group of columns? a. colgroup b. col c. cols d. tab Which of the following font styling tag is not valid? a. <small> b. <i> c. <b>

4 d. <big> e. <large> You have to add a list of products in a drop-down list. What will you use to group the identical products under a category name? a. optgroup b. option c. menu d. var e. There is no way to do this While designing the links page of your website, you want the link to open in a new browser window. How will you implement this with HTML? a. <anchor href=" b. <anchor href= target=_blank>mailer</anchor> c. <A HREF=" </A> d. <a href=" target="_blank">mailer</a> Which of the following statements is correct for a blockquote? a. It makes the text a bit bigger for emphasizing. b. It defines the start of a long quote. c. It makes the text slightly bolder. Which of the following values is/are valid for the valign attribute of a <tr> tag?

5 a. base b. bottomline c. middle d. baseline e. None of the above On one of your Web pages named Listing.html, you specified a target like this: <a name="target4">old Listing</a> How will you make a link to the above target? a. <a url="#target4">check Old Listing as well</a> b. <a href="#target4">check Old Listing as well</a> c. <link url="target4">check Old Listing as well</link> d. <a href="listing.target4">check Old Listing as well</a> The following link is placed on an HTML webpage. <a href=" target="_blank"> MSDN </a> What do you infer from it? a. It will open the site msdn.com in the same window. b. It will open the site msdn.com in a new window. c. It will open the site msdn.com in a frame below. d. It will not be clickable as it is not formed correctly. Which of the following statements is/are correct for DTDs?

6 a. A strict DTD allows users to use cascading style sheets. b. A transitional DTD displays content in those browsers that don't support CSS. c. A frameset DTD is used to partition the browser window. d. All of the above Which of the following is correct regarding the frame attribute in the <table> tag? a. It is used to add a frame to the table. b. A hsides value for the frame attribute will show the border lines for horizontal sides only. c. A hsides value for the frame attribute will not show the border lines for horizontal sides only. d. A hsides value for the frame attribute will add a scrollable frame on the horizontal sides. What is meant by the cellspacing attribute? a. It makes the cell span more than one column. b. It specifies the space between the cell wall and the contents of the cell. c. It specifies the space between two cells. d. It makes the cell span more than one row. Which of the following tags would assist in creating named groups within a select list? a. opt b. group c. optgroup d. selectgroup

7 Your website has moved to some other address. What HTML 4.01 code would automatically redirect a user to that address within 3 seconds of landing on the old address? a. <meta http-equiv="refresh" content="3;url= b. <meta http="refresh" url=" c. <meta scheme="refresh" name="redirect" http=" d. <meta http-equiv="redirect" content="3" http=" It is not necessary to give the coordinates for an image or object defined within an area tag, if the value of its shape attribute is: a. circle b. poly c. default d. rect A developer wrote this image tag: <img src ="states.gif" width ="330" height ="406" alt="states" usemap ="#statemap" /> What code should follow this? a. <map id ="statemap" name="statemap"> <area shape ="rect" coords ="0,0,82,126" href="state1.htm" alt="state1" /> </map> b. <map id ="statemap" name="statemap"></map> <area shape ="rect" coords ="0,0,82,126" href="state1.htm" alt="state1" /> c. <map id ="statemap" name="statemap"> <imgarea shape ="rect" coords ="0,0,82,126" href="state1.htm" alt="state1" /></map> d. <map id ="statemap" name="statemap"></map> <imgarea shape ="rect" coords ="0,0,82,126" href="state1.htm" alt="state1" />

8 For allowing the user to select only one radio button from a group of radio buttons: Which of the following values is not valid for the align attribute of a heading tag? Note: The align attribute was deprecated in HTML Use styles instead in new coding. a. The name of an input tag must be same for all the radio buttons. b. The value of an input tag must be same for all the radio buttons. c. The display text of an input tag must be same for all the radio buttons. d. All the radio buttons must be added to same group using <group> tag. a. right b. left c. middle d. center View the following code: <html> <frameset cols = "20%, 20%,*"> <frame src ="a.html"/><frame src ="b.html" /><frame src ="c.html" /> </frameset> </html> What will be displayed on viewing the above in a browser? a. An HTML page with three columns of equal width. b. An HTML page with three rows of equal height. c. An HTML page with the last column occupying 60% space. d. An HTML page with the last column occupying 40% space. Which of the following is true for the <colgroup> tag?

9 a. The attribute named cols specifies the number of columns in colgroup. b. It is useful for applying similar formatting to the grouped columns. c. It can be used anywhere between the body tags. d. It can be inserted in a <td> tag to include that cell to the group. What is the character-entity representation of the "less than" sign (<)? a. 60;# b. < c. &60#; d. #60&; Which of the following tags can be used in place of a button tag? a. legend b. ol c. input d. dl Within a table cell <td>: a. <p></p> tags cannot be used. b. <ol></ol> tags cannot be used. c. <table></table> tags cannot be used. d. <form></form> tags cannot be used. e. All the above tags could be used. You want to provide a form field to the users for writing lengthy comments on the quality of the services provided by you. Which of the following tags will you use?

10 a. <textarea rows="8" cols="20"> Your comments...</textarea> b. <textarea row="8" col="20"> Your comments...</textarea> c. <textarea rowcount="8" colcount="20"> Your comments... </textarea> d. <input type="text" maxlength="100" /> Which form event is fired on the click of a button using a button tag with its type attribute value equal to submit? a. onload b. onsubmit c. onunload d. onreset Which attribute(s) of the <table> tag is/are deprecated in HTML 4.01? a. align and cellspacing b. summary c. bgcolor and align d. cellspacing You placed four radio buttons on a web form. You want the users to specify whether they are male or female and whether they are married or single. The code is as follows: Male: <input type="radio" checked name="chk" value="male"> Female: <input type="radio" name="chk" value="female"> Married: <input type="radio" checked="checked" name="chk" value="married"> Single: <input type="radio" name="chk" value="single">

11 What is wrong with the above code? a. It will allow the user to choose only the male and the married options. b. It will allow the user to choose only the female and single options. c. It will allow the user to choose only one option out of the four. d. It will allow the user to choose all the four options at the same time. Choose the incorrect statement: a. The <em> tag emphasizes the given text by italicizing it. b. The <code> tag indicates that the text inside is an example of typed code. c. The <var> tag indicates that the text inside the tag has been revised. d. The <strong> tag is for strongly emphasizing the text. How will you import a style sheet named basic.css in your Web page? a. <import name="stylesheet" url="basic.css"> b. <link rel="stylesheet" type="text/css" href="basic.css"> c. <style name="stylesheet" url="basic.css"> d. <link item="stylesheet" type="text/css" href="basic.css"> Which of the following is not a valid input type of the form tag? a. checkbox

12 b. image c. hidden d. button e. All are valid What would you infer from the following code in an HTML 4.01 Web site? <body topmargin=2 leftmargin=2> a. The top margin and left margin of the webpage is 2 pixels. b. The bottom margin and right margin of the web page is 2 pixels. c. Both of the above. d. None of the above. The topmargin and leftmargin attributes are not valid HTML 4.01 body attributes. View the following code: <html> <frameset cols = "20%, 20%,*"> <frame src ="a.html"/><frame src ="b.html" /><frame src ="c.html" /> </frameset> </html> What will be displayed on viewing the above in a browser? a. An HTML page with three columns of equal width. b. An HTML page with three rows of equal height. c. An HTML page with the last column occupying 60% space. d. An HTML page with the last column occupying 40% space. Which of the following shows the basic tag structure of an HTML document? a. <html><head><body></body></html> b. <html><body></body></html>

13 c. <html><head></head><body></body></html> d. <html><head></head></html> Which of the following statements is correct for a blockquote? a. It makes the text a bit bigger for emphasizing. b. It defines the start of a long quote. c. It makes the text slightly bolder. Which event is fired when an element loses its focus on a form? a. onfocus b. onload c. onblur d. onselect Which of the following tags can be used in place of a button tag? a. legend b. ol c. input d. dl Which of the following is not an attribute of a meta tag? a. name

14 b. content c. http-equiv d. type What do you infer from the following code? <a href=" Rating</a> a. This href is using absolute path for linking. b. This href is an example of relative path linking. Which of the following tags within a table can be used to set the properties of one column or a group of columns? a. colgroup b. col c. cols d. tab A <!DOCTYPE> defines the document type of any HTML document. It can be of three types: a. Strict, Transitional, or Frameset b. Strict, Transitional, or Loose c. Fixed, Intermediate, or Loose d. Fixed, Intermediate, or Frameset You want to display a table listing out customer names and their contact information. The heading of the table is shown in the figure. What is the code for creating the first line of the table heading? a. <tr> <th>customer Name</th> <th rowspan=3>contact</th>

15 </tr> b. <tr> <th>customer Name</th> <th colspan=3>contact</th> </tr> c. <tr> <th>customer Name</th> <th cellpadding=3>contact</th> </tr> d. <tr> <th>customer Name</th> <th cellspacing=3>contact</th> </tr> A computer programming book has to go online. Which of the following tags is ideal for displaying the program snippets? a. <emp> b. <code> c. <dfn> d. <cite> Which of the following values is/are valid for the valign attribute of a <tr> tag? a. base b. bottomline c. middle d. baseline e. None of the above Which of the following attributes is/are related to the <img> tag?

16 a. height b. alt c. src d. All of the above For allowing the user to select only one radio button from a group of radio buttons: a. The name of an input tag must be same for all the radio buttons. b. The value of an input tag must be same for all the radio buttons. c. The display text of an input tag must be same for all the radio buttons. d. All the radio buttons must be added to same group using <group> tag. Which tag is meant for creating inline frames that display other HTML pages? a. img b. frame c. iframe d. url You specified a base tag and anchors as follows: 1. <base target="_blank">

17 2. <a href=" 3. <a href=" target="_top">google</a> Which of the following is true for the above code? a. Only the Yahoo link will open in a new window. b. Only the Google link will open in a new window. c. Both links will open in a new window. d. Both links will open in the same window. You have the following directory structure. webroot->products->ordered->delivered The products directory has a page called Products.html and the delivered directory has a page called Delivered.html. You want to provide a link to the Products page on Delivered.html. The ideal code should be: a. <a href="././products.html"> All Products </a> b. <a href="../../products.html"> All Products </a> c. <a href=".../.../products.html"> All Products </a> d. <a href="../products.html"> All Products </a> e. <a href="products.html"> All Products</a> Which of the following values for the scrolling attribute for the frame tag is not valid? a. yes b. default c. auto d. no You want to create a link for your website allowing users to the webmaster. How will you implement this if the webmaster's address is webmaster@xcompany.com?

18 a. <a b. <a c. <a d. <mail e. <a Which of the following is/are not valid? a. <h2>main Title</h2> b. <h>main Title</h> c. <h3>main Title</h3> d. <h7>main Title</h7> While designing the links page of your website, you want the link to open in a new browser window. How will you implement this with HTML? a. <anchor href=" b. <anchor href= target=_blank>mailer</anchor> c. <A HREF=" </A> d. <a href=" target="_blank">mailer</a> You are designing a website for one of your clients. You have to use an applet named cal.class to show a scrollable calendar. Which of the following is the recommended way of calling it if you are using HTML 4.01?

19 a. <applet code="cal" width="180" height="180"></applet> b. <img src="cal"></img> c. <object classid="appid" id="cal" width="180" height="180"></object> d. <sub id="cal"></sub> Within a table cell <td>: a. <p></p> tags cannot be used. b. <ol></ol> tags cannot be used. c. <table></table> tags cannot be used. d. <form></form> tags cannot be used. e. All the above tags could be used. Which of the following is correct regarding the frame attribute in the <table> tag? a. It is used to add a frame to the table. b. A hsides value for the frame attribute will show the border lines for horizontal sides only. c. A hsides value for the frame attribute will not show the border lines for horizontal sides only. d. A hsides value for the frame attribute will add a scrollable frame on the horizontal sides.

20 Where must the styles specified for a CSS internal style sheet be located? a. Inside a table tag b. Inside a div tag c. Inside the head tag d. Anywhere on the webpage Which of the following items should not be used in the address tag? a. physical contact address of the Web site b. contact address for the Web site c. contact signature d. abbreviations Choose the incorrect statement: a. The <em> tag emphasizes the given text by italicizing it. b. The <code> tag indicates that the text inside is an example of typed code. c. The <var> tag indicates that the text inside the tag has been revised. d. The <strong> tag is for strongly emphasizing the text. Which of the following is incorrect about the relation between HTML and XHTML? a. XHTML is a stricter and cleaner version of HTML. b. XHTML is almost identical to HTML c. XHTML and HTML both are used to generate dynamic content.

21 d. XHTML brings together the elements of HTML and the syntax of XML. How will you import a style sheet named basic.css in your Web page? a. <import name="stylesheet" url="basic.css"> b. <link rel="stylesheet" type="text/css" href="basic.css"> c. <style name="stylesheet" url="basic.css"> d. <link item="stylesheet" type="text/css" href="basic.css"> The tag that is used to pass the parameters to an applet is: a. appletpar b. applet c. param d. val Which of the following would give a yellow background to the web page? Note: The code used in the "correct" answer below was deprecated in HTML 4.01! Use styles instead for new code. a. <body backcolor="yellow"> b. <body background="yellow"> c. <body bgcolor="yellow"> d. <body color="yellow"> Which of the following values is not valid for the align attribute of a heading tag? Note: The align attribute was deprecated in HTML Use styles instead in new coding. a. right

22 b. left c. middle d. center Which of the following attributes is/are not associated with textarea tag in W3C standard HTML 4.01? a. wrap b. cols c. name d. rows e. ref Which of the following attributes comes in handy when borders have to be put between groups of columns instead of every column? a. col b. colgroup c. rowspan d. row What is meant by cellpadding? a. It makes the cell span more than one column. b. It specifies the space between the cell wall and the contents of the cell. c. It specifies the space between two cells. d. It makes the cell span more than one row.

23 A few lines in an HTML paragraph are to be formatted differently from the rest of the lines. Which tag will assist in this? a. div b. p c. span d. format Which of the following is not correct for an action attribute for a form tag? a. The action attribute can be defined at runtime. b. If the value for action is null (action=""), then the form submits user data to itself. c. If the URL is not provided to the action attribute, the form will not submit user data anywhere. d. None of the above Choose the incorrect statement(s): a. An HTML attribute is additional information included inside a tag. b. HTML is case sensitive. c. All the HTML4.01 tags must be paired. d. Your browser may appear to correctly use newly deprecated code for the present, but its support for deprecated code could be halted at any time after the browser is updated. How will you specify a comment in an HTML document? a. <!!- Here is a comment... -!> b. <-Here is a comment.. ->

24 Is the following code valid in HTML 4.01 Strict? <ul> <li> <ol> <li>a</li> <li>b</li> <ul> <li>item 1</li> <li>item 2</li> </ul> <li>c</li> </ol> </li> </ul> c. <!-- Here is a comment.. --> d. <! Here is a comment... -!> a. Perfectly valid. b. Invalid because you should not have three levels of nesting in the lists. c. Invalid because you should not have an unordered list within an ordered list. d. Invalid because you should not have an ordered list within an unordered list. e. Invalid because a <ul> tag should not conflict with an <ol> tag at the same list level. Question: While designing the links page of your website, you want the link to open in a new browser window. How will you implement this with HTML? a. <anchor href=" b. <anchor href= target=_blank>mailer</anchor> c. <A HREF=" </A> d. <a href=" target="_blank">mailer</a> Which of the following font styling tag is not valid? a. <small> b. <i> c. <b> d. <big> e. <large>

25 You are creating several web pages for a website that contain several rather large data tables, many of which are somewhat similar in the number of columns, rows, and in other common table formatting. In addition, CSS will be employed for formatting the tables. Which one of the following types of CSS has the highest priority over the others and typically requires the greatest total amount of code space for the entire website for formatting the various <td> table cells? a. External style sheet b. Inline style c. Internal style sheet d. Browser default You have the following directory structure. webroot->products->ordered->delivered The products directory has a page called Products.html and the delivered directory has a page called Delivered.html. You want to provide a link to the Products page on Delivered.html. The ideal code should be: a. <a href="././products.html"> All Products </a> b. <a href="../../products.html"> All Products </a> c. <a href=".../.../products.html"> All Products </a> d. <a href="../products.html"> All Products </a> e. <a href="products.html"> All Products</a> Which of the following options about the <select> tag is incorrect? a. The name attribute should be specified. b. The disabled attribute disables the drop-down list. c. The multiple attribute allows the user to choose multiple options. d. The text specified in the value attribute is displayed in the drop-down list.

26 A few lines in an HTML paragraph are to be formatted differently from the rest of the lines. Which tag will assist in this? a. div b. p c. span d. format Within a table cell <td>: a. <p></p> tags cannot be used. b. <ol></ol> tags cannot be used. c. <table></table> tags cannot be used. d. <form></form> tags cannot be used. e. All the above tags could be used. Which of the following values is not valid for the align attribute of a heading tag? Note: The align attribute was deprecated in HTML Use styles instead in new coding. a. right b. left c. middle d. center How does a button created by the <button> tag differ from the one created by an <input> tag?

27 a. An input tag button can be a reset button too. b. A button tag button can be a reset button too. c. An input tag button can include images as well. d. A button tag can include images as well. Which of the following statements is true about the table header, body, and footer tags? a. The table's header, body, and footer tags are <tablehead>, <tablebody>, and <tablefoot>, respectively. b. The table's header, body, and footer tags are <tabhead>, <tabbody>, and <tabfoot>, respectively. c. It is recommended to first specify the table header, followed by the footer, and then the body tags. d. These tags are supported by a wide range of browsers and are commonly used by Web designers. What is the character-entity representation of the "less than" sign (<)? a. 60;# b. < c. &60#; d. #60&; What is meant by cellpadding? a. It makes the cell span more than one column. b. It specifies the space between the cell wall and the contents of the cell. c. It specifies the space between two cells. d. It makes the cell span more than one row.

28 Which of the following is not a valid input type of the form tag? a. checkbox b. image c. hidden d. button e. All are valid You placed four radio buttons on a web form. You want the users to specify whether they are male or female and whether they are married or single. The code is as follows: Male: <input type="radio" checked name="chk" value="male"> Female: <input type="radio" name="chk" value="female"> Married: <input type="radio" checked="checked" name="chk" value="married"> Single: <input type="radio" name="chk" value="single"> What is wrong with the above code? a. It will allow the user to choose only the male and the married options. b. It will allow the user to choose only the female and single options. c. It will allow the user to choose only one option out of the four. d. It will allow the user to choose all the four options at the same time. Which of the following tags would assist in creating named groups within a select list? a. opt b. group c. optgroup

29 d. selectgroup Which of the following is correct for an image? a. An image must be resized in an editor to fit in the specified space on a webpage. b. If you have a big image but specify smaller height and width attributes in the <img> tag, only the top-left portion of the image will be displayed in the browser. c. Both of the above are correct. d. The height and width attributes allow resizing the image on the webpage. Which of the following is correct for an image? a. An image must be resized in an editor to fit in the specified space on a webpage. b. If you have a big image but specify smaller height and width attributes in the <img> tag, only the top-left portion of the image will be displayed in the browser. c. Both of the above are correct. d. The height and width attributes allow resizing the image on the webpage. Which of the following values for the scrolling attribute for the frame tag is not valid? a. yes b. default c. auto d. no A <!DOCTYPE> defines the document type of any HTML document. It can be of three types: a. Strict, Transitional, or Frameset b. Strict, Transitional, or Loose

30 c. Fixed, Intermediate, or Loose d. Fixed, Intermediate, or Frameset The following link is placed on an HTML webpage. <a href=" target="_blank"> MSDN </a> What do you infer from it? a. It will open the site msdn.com in the same window. b. It will open the site msdn.com in a new window. c. It will open the site msdn.com in a frame below. d. It will not be clickable as it is not formed correctly. Which of the following items should not be used in the address tag? a. physical contact address of the Web site b. contact address for the Web site c. contact signature d. abbreviations Which of the following is/are not correct for a <meta> tag in HTML 4.01? a. It is more useful if it is placed in a head element. b. It can be used to specify the keywords for the search engines. c. It can be used to redirect users to other URLs. d. It is mandatory to specify its name or scheme attributes.

31 Which of the following is/are not true for a paragraph tag in HTML 4.01? a. The text must be enclosed in <p> and </p> tags. b. It creates an empty line above its starting line. c. It cannot be used within a <td> tag. d. It creates an empty line after its ending line. Which of the following statements is correct for a blockquote? a. It makes the text a bit bigger for emphasizing. b. It defines the start of a long quote. c. It makes the text slightly bolder. Which of the following statements is correct for the <blockquote> tag? a. The text under block quote must be enclosed in a block level element in a strict DTD document. b. The attribute named cite must be specified. c. Closing the tag is optional. d. It places an empty line after the text. Which of the following values is/are valid for the valign attribute of a <tr> tag? a. base

32 b. bottomline c. middle d. baseline e. None of the above Which of the following set of coordinate values refers to an image defined by the area tag with the value of poly for its shape attribute? a. coords="150,217,190,257,150,297,110,257" b. coords="150,190,150,110" c. coords="150,217,190,257,150" d. coords="150,110,190,220,150,150,120" Which of the following is incorrect about the relation between HTML and XHTML? a. XHTML is a stricter and cleaner version of HTML. b. XHTML is almost identical to HTML c. XHTML and HTML both are used to generate dynamic content. d. XHTML brings together the elements of HTML and the syntax of XML. Choose the incorrect statement: a. The <em> tag emphasizes the given text by italicizing it. b. The <code> tag indicates that the text inside is an example of typed code. c. The <var> tag indicates that the text inside the tag has been revised.

33 d. The <strong> tag is for strongly emphasizing the text. For the following items of a <select> list: <option value="89">item 1</option> <option value="90">item 2</option> Which of the following values would be passed on by clicking the submit button on selecting Item 2 from the list? a. 89 b. 90 c. Item 1 d. Item 2 You have to add a list of products in a drop-down list. What will you use to group the identical products under a category name? a. optgroup b. option c. menu d. var e. There is no way to do this A piece of text contains many blank spaces within it. Which of the following tags would be suitable to display the text as it was originally formatted? a. td b. p

34 c. ls d. pre ou specified a base tag and anchors as follows: 1. <base target="_blank"> 2. <a href=" 3. <a href=" target="_top">google</a> Which of the following is true for the above code? a. Only the Yahoo link will open in a new window. b. Only the Google link will open in a new window. c. Both links will open in a new window. d. Both links will open in the same window. You want to display a table listing out customer names and their contact information. The heading of the table is shown in the figure. What is the code for creating the first line of the table heading? a. <tr> <th>customer Name</th> <th rowspan=3>contact</th> </tr> b. <tr> <th>customer Name</th> <th colspan=3>contact</th> </tr> c. <tr> <th>customer Name</th> <th cellpadding=3>contact</th> </tr> d. <tr> <th>customer Name</th> <th cellspacing=3>contact</th> </tr>

35 Which of the following is not correct for a div tag? a. It defines a logical division or section of an HTML document. b. It usually leaves empty space before and after the tag. c. We cannot apply style to a div tag. d. All of the above. Which of the following is correct for an image? a. An image must be resized in an editor to fit in the specified space on a webpage. b. If you have a big image but specify smaller height and width attributes in the <img> tag, only the top-left portion of the image will be displayed in the browser. c. Both of the above are correct. d. The height and width attributes allow resizing the image on the webpage. Which of the following attributes is/are related to the <img> tag? a. height b. alt c. src d. All of the above What is meant by the cellspacing attribute?

36 a. It makes the cell span more than one column. b. It specifies the space between the cell wall and the contents of the cell. c. It specifies the space between two cells. d. It makes the cell span more than one row. A piece of text contains many blank spaces within it. Which of the following tags would be suitable to display the text as it was originally formatted? a. td b. p c. ls d. pre Within a table cell <td>: a. <p></p> tags cannot be used. b. <ol></ol> tags cannot be used. c. <table></table> tags cannot be used. d. <form></form> tags cannot be used. e. All the above tags could be used. A computer programming book has to go online. Which of the following tags is ideal for displaying the program snippets? a. <emp> b. <code>

37 c. <dfn> d. <cite> Which of the following is incorrect about the relation between HTML and XHTML? a. XHTML is a stricter and cleaner version of HTML. b. XHTML is almost identical to HTML c. XHTML and HTML both are used to generate dynamic content. d. XHTML brings together the elements of HTML and the syntax of XML. How does a button created by the <button> tag differ from the one created by an <input> tag? a. An input tag button can be a reset button too. b. A button tag button can be a reset button too. c. An input tag button can include images as well. d. A button tag can include images as well. Which of the following attributes comes in handy when borders have to be put between groups of columns instead of every column? a. col

38 b. colgroup c. rowspan d. row Choose the incorrect statement(s): a. An HTML attribute is additional information included inside a tag. b. HTML is case sensitive. c. All the HTML4.01 tags must be paired. d. Your browser may appear to correctly use newly deprecated code for the present, but its support for deprecated code could be halted at any time after the browser is updated. Which of the following shows the basic tag structure of an HTML document? You are designing a website for one of your clients. You have to use an applet named cal.class to show a scrollable calendar. Which of the following is the recommended way of calling it if you are using HTML 4.01? a. <html><head><body></body></html> b. <html><body></body></html> c. <html><head></head><body></body></html> d. <html><head></head></html> a. <applet code="cal" width="180" height="180"></applet> b. <img src="cal"></img> c. <object classid="appid" id="cal" width="180" height="180"></object> d. <sub id="cal"></sub> Where must the styles specified for a CSS internal style sheet be located?

39 a. Inside a table tag b. Inside a div tag c. Inside the head tag d. Anywhere on the webpage You specified a base tag and anchors as follows: 1. <base target="_blank"> 2. <a href=" 3. <a href=" target="_top">google</a> Which of the following is true for the above code? a. Only the Yahoo link will open in a new window. b. Only the Google link will open in a new window. c. Both links will open in a new window. d. Both links will open in the same window. Which event is fired when an element loses its focus on a form? a. onfocus b. onload c. onblur d. onselect Which of the following set of coordinate values refers to an image defined by the area tag with the value of poly for its shape attribute? a. coords="150,217,190,257,150,297,110,257"

40 b. coords="150,190,150,110" c. coords="150,217,190,257,150" d. coords="150,110,190,220,150,150,120" You want to display a table listing out customer names and their contact information. The heading of the table is shown in the figure. What is the code for creating the first line of the table heading? a. <tr> <th>customer Name</th> <th rowspan=3>contact</th> </tr> b. <tr> <th>customer Name</th> <th colspan=3>contact</th> </tr> c. <tr> <th>customer Name</th> <th cellpadding=3>contact</th> </tr> d. <tr> <th>customer Name</th> <th cellspacing=3>contact</th> </tr> Which of the following is/are not correct for a <meta> tag in HTML 4.01? a. It is more useful if it is placed in a head element. b. It can be used to specify the keywords for the search engines. c. It can be used to redirect users to other URLs. d. It is mandatory to specify its name or scheme attributes. Which of the following tags can be used in place of a button tag? a. legend

41 b. ol c. input d. dl Which of the following statements is correct for a blockquote? a. It makes the text a bit bigger for emphasizing. b. It defines the start of a long quote. c. It makes the text slightly bolder. For allowing the user to select only one radio button from a group of radio buttons: a. The name of an input tag must be same for all the radio buttons. b. The value of an input tag must be same for all the radio buttons. c. The display text of an input tag must be same for all the radio buttons. d. All the radio buttons must be added to same group using <group> tag. Which of the following is invalid value for the shape attribute of an area tag? a. circle b. tri c. rect d. poly address is webmaster@xcompany.com?

42 a. <a b. <a c. <a d. <mail e. <a Which of the following is not correct for an action attribute for a form tag? a. The action attribute can be defined at runtime. b. If the value for action is null (action=""), then the form submits user data to itself. c. If the URL is not provided to the action attribute, the form will not submit user data anywhere. d. None of the above Which of the following is not an attribute of a meta tag? a. name b. content c. http-equiv d. type For the following items of a <select> list: <option value="89">item 1</option> <option value="90">item 2</option> Which of the following values would be passed on by clicking the submit button on selecting Item 2 from the list? a. 89 b. 90 c. Item 1

43 d. Item 2 Your browser supports bidirectional text. Which tag below will you use if you need to display text from right to left? a. <opposite>text should go in opposite direction</opposite> b. <p direction="rtl">text should go in opposite direction</p> c. <body dir="rtl">text should go in opposite direction</body> d. <text dir="rtl">text should go in opposite direction</text> Which of the following is not a valid input type of the form tag? a. checkbox b. image c. hidden d. button e. All are valid Which of the following attributes is/are valid for a select tag contained within a form tag? a. name b. size c. multiple d. All of the above

44 A developer wrote this image tag: <img src ="states.gif" width ="330" height ="406" alt="states" usemap ="#statemap" /> What code should follow this? a. <map id ="statemap" name="statemap"> <area shape ="rect" coords ="0,0,82,126" href="state1.htm" alt="state1" /> </map> b. <map id ="statemap" name="statemap"></map> <area shape ="rect" coords ="0,0,82,126" href="state1.htm" alt="state1" /> c. <map id ="statemap" name="statemap"> <imgarea shape ="rect" coords ="0,0,82,126" href="state1.htm" alt="state1" /></map> d. <map id ="statemap" name="statemap"></map> <imgarea shape ="rect" coords ="0,0,82,126" href="state1.htm" alt="state1" /> Choose the incorrect statement: a. The <em> tag emphasizes the given text by italicizing it. b. The <code> tag indicates that the text inside is an example of typed code. c. The <var> tag indicates that the text inside the tag has been revised. d. The <strong> tag is for strongly emphasizing the text. Which of the following is correct regarding the frame attribute in the <table> tag? a. It is used to add a frame to the table. b. A hsides value for the frame attribute will show the border lines for horizontal sides only. c. A hsides value for the frame attribute will not show the border lines for horizontal sides only. d. A hsides value for the frame attribute will add a scrollable frame on the horizontal sides.

45 Which attribute specifies the submit URL in a form tag? a. method b. action c. name d. id Which of the following values is/are valid for the align attribute of a <td> tag? a. left b. right c. center d. offset Which of the following attributes is/are not associated with textarea tag in W3C standard HTML 4.01? a. wrap b. cols c. name d. rows e. ref

46 You have to add a list of products in a drop-down list. What will you use to group the identical products under a category name? a. optgroup b. option c. menu d. var e. There is no way to do this What is the character-entity representation of the "less than" sign (<)? a. 60;# b. < c. &60#; d. #60&; A <!DOCTYPE> defines the document type of any HTML document. It can be of three types: a. Strict, Transitional, or Frameset b. Strict, Transitional, or Loose c. Fixed, Intermediate, or Loose d. Fixed, Intermediate, or Frameset

47 Which of the following values is/are valid for the valign attribute of a <tr> tag? a. base b. bottomline c. middle d. baseline e. None of the above Which event is fired when an element loses its focus on a form? Which of the following values is/are valid for the align attribute of a <td> tag? a. left b. right c. center d. offset How does a button created by the <button> tag differ from the one created by an <input> tag? a. An input tag button can be a reset button too. b. A button tag button can be a reset button too. c. An input tag button can include images as well. d. A button tag can include images as well.

48 Choose the incorrect statement(s): a. An HTML attribute is additional information included inside a tag. b. HTML is case sensitive. c. All the HTML4.01 tags must be paired. d. Your browser may appear to correctly use newly deprecated code for the present, but its support for deprecated code could be halted at any time after the browser is updated. How does a button created by the <button> tag differ from the one created by an <input> tag? a. An input tag button can be a reset button too. b. A button tag button can be a reset button too. c. An input tag button can include images as well. d. A button tag can include images as well. Is the following code valid in HTML 4.01 Strict? <ul> <li> <ol> <li>a</li> <li>b</li> <ul> <li>item 1</li> <li>item 2</li> </ul> <li>c</li> </ol> </li> </ul> a. Perfectly valid. b. Invalid because you should not have three levels of nesting in the lists. c. Invalid because you should not have an unordered list within an ordered list. d. Invalid because you should not have an ordered list within an unordered list. e. Invalid because a <ul> tag should not conflict with an <ol> tag at the same list level.

49 A computer programming book has to go online. Which of the following tags is ideal for displaying the program snippets? a. <emp> b. <code> c. <dfn> d. <cite> Which of the following would give a yellow background to the web page? Note: The code used in the "correct" answer below was deprecated in HTML 4.01! Use styles instead for new code. a. <body backcolor="yellow"> b. <body background="yellow"> c. <body bgcolor="yellow"> d. <body color="yellow"> Which of the following shows the basic tag structure of an HTML document? a. <html><head><body></body></html> b. <html><body></body></html> c. <html><head></head><body></body></html> d. <html><head></head></html>

50 Which of the following is correct for an image? a. An image must be resized in an editor to fit in the specified space on a webpage. b. If you have a big image but specify smaller height and width attributes in the <img> tag, only the top-left portion of the image will be displayed in the browser. c. Both of the above are correct. d. The height and width attributes allow resizing the image on the webpage. On one of your Web pages named Listing.html, you specified a target like this: <a name="target4">old Listing</a> How will you make a link to the above target? a. <a url="#target4">check Old Listing as well</a> b. <a href="#target4">check Old Listing as well</a> c. <link url="target4">check Old Listing as well</link> d. <a href="listing.target4">check Old Listing as well</a> Which of the following values is/are valid for the valign attribute of a <tr> tag? a. base b. bottomline c. middle d. baseline e. None of the above

51 What is meant by the cellspacing attribute? a. It makes the cell span more than one column. b. It specifies the space between the cell wall and the contents of the cell. c. It specifies the space between two cells. d. It makes the cell span more than one row. Which of the following is not correct for an action attribute for a form tag? a. The action attribute can be defined at runtime. b. If the value for action is null (action=""), then the form submits user data to itself. c. If the URL is not provided to the action attribute, the form will not submit user data anywhere. d. None of the above You are designing a website for one of your clients. You have to use an applet named cal.class to show a scrollable calendar. Which of the following is the recommended way of calling it if you are using HTML 4.01? a. <applet code="cal" width="180" height="180"></applet> b. <img src="cal"></img> c. <object classid="appid" id="cal" width="180" height="180"></object> d. <sub id="cal"></sub>

52 Where must the styles specified for a CSS internal style sheet be located? a. Inside a table tag b. Inside a div tag c. Inside the head tag d. Anywhere on the webpage Which attribute specifies the submit URL in a form tag? a. method b. action c. name d. id Your browser supports bidirectional text. Which tag below will you use if you need to display text from right to left? a. <opposite>text should go in opposite direction</opposite> b. <p direction="rtl">text should go in opposite direction</p> c. <body dir="rtl">text should go in opposite direction</body> d. <text dir="rtl">text should go in opposite direction</text>

53 Which of the following items should not be used in the address tag? a. physical contact address of the Web site b. contact address for the Web site c. contact signature d. abbreviations Which of the following values is not valid for the align attribute of a heading tag? Note: The align attribute was deprecated in HTML Use styles instead in new coding. a. right b. left c. middle d. center Which tag is meant for creating inline frames that display other HTML pages? a. img b. frame c. iframe d. url

54 You have the following directory structure. webroot->products->ordered->delivered The products directory has a page called Products.html and the delivered directory has a page called Delivered.html. You want to provide a link to the Products page on Delivered.html. The ideal code should be: a. <a href="././products.html"> All Products </a> b. <a href="../../products.html"> All Products </a> c. <a href=".../.../products.html"> All Products </a> d. <a href="../products.html"> All Products </a> e. <a href="products.html"> All Products</a> Which of the following statements is/are correct for DTDs? a. A strict DTD allows users to use cascading style sheets. b. A transitional DTD displays content in those browsers that don't support CSS. c. A frameset DTD is used to partition the browser window. d. All of the above Which of the following tags can be used in place of a button tag? a. legend b. ol c. input d. dl

55 You want to display a table listing out customer names and their contact information. The heading of the table is shown in the figure. What is the code for creating the first line of the table heading? a. <tr> <th>customer Name</th> <th rowspan=3>contact</th> </tr> b. <tr> <th>customer Name</th> <th colspan=3>contact</th> </tr> c. <tr> <th>customer Name</th> <th cellpadding=3>contact</th> </tr> d. <tr> <th>customer Name</th> <th cellspacing=3>contact</th> Which of the following attributes is/are related to the <img> tag? a. height b. alt c. src d. All of the above Which of the following is not an attribute of a meta tag? a. name b. content c. http-equiv d. type

56 Which of the following options about the <select> tag is incorrect? a. The name attribute should be specified. b. The disabled attribute disables the drop-down list. c. The multiple attribute allows the user to choose multiple options. d. The text specified in the value attribute is displayed in the drop-down list. View the following code: <html> <frameset cols = "20%, 20%,*"> <frame src ="a.html"/><frame src ="b.html" /><frame src ="c.html" /> </frameset> </html> What will be displayed on viewing the above in a browser? a. An HTML page with three columns of equal width. b. An HTML page with three rows of equal height. c. An HTML page with the last column occupying 60% space. d. An HTML page with the last column occupying 40% space. Which of the following tags within a table can be used to set the properties of one column or a group of columns? a. colgroup b. col c. cols d. tab

57 Within a table cell <td>: a. <p></p> tags cannot be used. b. <ol></ol> tags cannot be used. c. <table></table> tags cannot be used. d. <form></form> tags cannot be used. e. All the above tags could be used. Your website has moved to some other address. What HTML 4.01 code would automatically redirect a user to that address within 3 seconds of landing on the old address? a. <meta http-equiv="refresh" content="3;url= b. <meta http="refresh" url=" c. <meta scheme="refresh" name="redirect" http=" d. <meta http-equiv="redirect" content="3" http=" It is not necessary to give the coordinates for an image or object defined within an area tag, if the value of its shape attribute is: a. circle b. poly c. default d. rect

58 Which of the following is/are not valid? a. <h2>main Title</h2> b. <h>main Title</h> c. <h3>main Title</h3> d. <h7>main Title</h7> Which event is fired when an element loses its focus on a form? a. onfocus b. onload c. onblur d. onselect Choose the incorrect statement(s): a. An HTML attribute is additional information included inside a tag. b. HTML is case sensitive. c. All the HTML4.01 tags must be paired. d. Your browser may appear to correctly use newly deprecated code for the present, but its support for deprecated code could be halted at any time after the browser is updated.

59 Which of the following tags would assist in creating named groups within a select list? a. opt b. group c. optgroup d. selectgroup You do not want the user to resize the frame. The code should be: a. <frame src="mypage.html" name="homepage" scrolling=yes resize="false"> b. <frame src="mypage.html" name="homepage" scrolling=yes resize="true"> c. <frame src="mypage.html" name="homepage" scrolling=yes noresize="true"> d. <frame src="mypage.html" name="homepage" scrolling=yes noresize="noresize"> The tag which is used to show monospaced text is: a. <td> b. <th> c. <tt> d. <b>

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

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

More information

Name Related Elements Type Default Depr. DTD Comment

Name Related Elements Type Default Depr. DTD Comment Legend: Deprecated, Loose DTD, Frameset DTD Name Related Elements Type Default Depr. DTD Comment abbr TD, TH %Text; accept-charset FORM %Charsets; accept FORM, INPUT %ContentTypes; abbreviation for header

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

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

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

More information

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

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

More information

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

Index. CSS directive, # (octothorpe), intrapage links, 26

Index. CSS directive, # (octothorpe), intrapage links, 26 Holzschlag_.qxd 3/30/05 9:23 AM Page 299 Symbols @import CSS directive, 114-115 # (octothorpe), intrapage links, 26 A a element, 23, 163, 228 abbr element, 228 absolute keywords for font sizing, 144 absolute

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

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

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

More information

Table-Based Web Pages

Table-Based Web Pages Table-Based Web Pages Web Authoring and Design Benjamin Kenwright Outline What do we mean by Table-Based Web Sites? Review Table Tags/Structure Tips/Debugging/Applications Summary Review/Discussion Submissions/Quizzes/GitHub

More information

Chapter 2:- Introduction to XHTML. Compiled By:- Sanjay Patel Assistant Professor, SVBIT.

Chapter 2:- Introduction to XHTML. Compiled By:- Sanjay Patel Assistant Professor, SVBIT. Chapter 2:- Introduction to XHTML Compiled By:- Assistant Professor, SVBIT. Outline Introduction to XHTML Move to XHTML Meta tags Character entities Frames and frame sets Inside Browser What is XHTML?

More information

Certified HTML5 Developer VS-1029

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

More information

Certified HTML Designer VS-1027

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

More information

Canvas & Brush Reference. Source: stock.xchng, Maarten Uilenbroek

Canvas & Brush Reference. Source: stock.xchng, Maarten Uilenbroek Canvas & Brush Reference Source: stock.xchng, Maarten Uilenbroek Canvas Hierarchy WACanvas WAHtmlCanvas WARenderCanvas WAStaticHtmlCanvas Brush Hierarchy WABrush WACompound WADateInput WATimeInput WATagBrush

More information

Oliver Pott HTML XML. new reference. Markt+Technik Verlag

Oliver Pott HTML XML. new reference. Markt+Technik Verlag Oliver Pott HTML XML new reference Markt+Technik Verlag Inhaltsverzeichnis Übersicht 13 14 A 15 A 16 ABBR 23 ABBR 23 ACCEPT 26 ACCEPT-CHARSET

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

Appendix A. XHTML 1.1 Module Reference

Appendix A. XHTML 1.1 Module Reference Appendix A XHTML 1.1 Module Reference 2 How to Do Everything with HTML & XHTML XHTML 1.1 represents a major step by the W3C in moving away from the often-disorderly world of HTML to the organized and orderly

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

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

Chapter 5. Introduction to XHTML: Part 2

Chapter 5. Introduction to XHTML: Part 2 Chapter 5. Introduction to XHTML: Part 2 Tables Attributes of the table element: border: width of the table border in pixels (0 makes all lines invisible) align: horizontal alignment (left, center, or

More information

CSC Web Technologies, Spring HTML Review

CSC Web Technologies, Spring HTML Review CSC 342 - Web Technologies, Spring 2017 HTML Review HTML elements content : is an opening tag : is a closing tag element: is the name of the element attribute:

More information

NAME: name a section of the page TARGET = "_blank" "_parent" "_self" "_top" window name which window the document should go in

NAME: name a section of the page TARGET = _blank _parent _self _top window name which window the document should go in Anchor HREF: URL you are linking to Bold Base Address NAME: name a section of the page TARGET = "_blank" "_parent" "_self"

More information

Advanced HTML Scripting WebGUI Users Conference

Advanced HTML Scripting WebGUI Users Conference Advanced HTML Scripting 2004 WebGUI Users Conference XHTML where did that x come from? XHTML =? Extensible Hypertext Markup Language Combination of HTML and XML More strict than HTML Things to Remember

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

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

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

More information

IMY 110 Theme 7 HTML Tables

IMY 110 Theme 7 HTML Tables IMY 110 Theme 7 HTML Tables 1. HTML Tables 1.1. Tables The HTML table model allows authors to arrange data into rows and columns of cells, just as in word processing software such as Microsoft Word. It

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

UNIT II Dynamic HTML and web designing

UNIT II Dynamic HTML and web designing UNIT II Dynamic HTML and web designing HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is not a programming language, it is a markup language A markup language

More information

c122sep2914.notebook September 29, 2014

c122sep2914.notebook September 29, 2014 Have done all at the top of the page. Now we will move on to mapping, forms and iframes. 1 Here I am setting up an image and telling the image to uuse the map. Note that the map has name="theimage". I

More information

CS105 Course Reader Appendix A: HTML Reference

CS105 Course Reader Appendix A: HTML Reference Stanford CS106E Young CS105 Course Reader Appendix A: HTML Reference Tag Index by Section The tags are listed in one of nine sections as shown below: Character Appearance Elements , Bold

More information

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

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

More information

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions Text and Layout Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11 This presentation 344 345 Text in Graphics Maximum flexibility obtained by treating text as graphics and manipulating

More information

HTTP and HTML. We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms.

HTTP and HTML. We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms. HTTP and HTML We will use HTML as a frontend to our webapplications, therefore a basic knowledge of HTML is required, especially in forms. HTTP and HTML 28 January 2008 1 When the browser and the server

More information

HTML: Parsing Library

HTML: Parsing Library HTML: Parsing Library Version 4.1.3 November 20, 2008 (require html) The html library provides functions to read html documents and structures to represent them. (read-xhtml port) html? port : input-port?

More information

Programmazione Web a.a. 2017/2018 HTML5

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

More information

HTML 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

2.1 Origins and Evolution of HTML

2.1 Origins and Evolution of HTML 2.1 Origins and Evolution of HTML - HTML was defined with SGML - Original intent of HTML: General layout of documents that could be displayed by a wide variety of computers - Recent versions: - HTML 4.0

More information

HTML Tags <A></A> <A HREF="http://www.cnn.com"> CNN </A> HREF

HTML Tags <A></A> <A HREF=http://www.cnn.com> CNN </A> HREF HTML Tags Tag Either HREF or NAME is mandatory Definition and Attributes The A tag is used for links and anchors. The tags go on either side of the link like this: the link

More information

Website Development with HTML5, CSS and Bootstrap

Website Development with HTML5, CSS and Bootstrap Contact Us 978.250.4983 Website Development with HTML5, CSS and Bootstrap Duration: 28 hours Prerequisites: Basic personal computer skills and basic Internet knowledge. Course Description: This hands on

More information

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6 CS 350 COMPUTER/HUMAN INTERACTION Lecture 6 Setting up PPP webpage Log into lab Linux client or into csserver directly Webspace (www_home) should be set up Change directory for CS 350 assignments cp r

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

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

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP Objectives INFS 2150 / 7150 Intro to Web Development / HTML Programming Designing a Web Page with Tables Create a text table Create a table using the , , and tags Create table headers

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

The [HTML] Element p. 61 The [HEAD] Element p. 62 The [TITLE] Element p. 63 The [BODY] Element p. 66 HTML Elements p. 66 Core Attributes p.

The [HTML] Element p. 61 The [HEAD] Element p. 62 The [TITLE] Element p. 63 The [BODY] Element p. 66 HTML Elements p. 66 Core Attributes p. Acknowledgments p. xix Preface p. xxi Web Basics Introduction to HTML p. 3 Basic HTML Concepts p. 4 HTML: A Structured Language p. 7 Overview of HTML Markup p. 11 Logical and Physical HTML p. 13 What HTML

More information

Basics of Web Design, 3 rd Edition Instructor Materials Chapter 2 Test Bank

Basics of Web Design, 3 rd Edition Instructor Materials Chapter 2 Test Bank Multiple Choice. Choose the best answer. 1. What element is used to configure a new paragraph? a. new b. paragraph c. p d. div 2. What element is used to create the largest heading? a. h1 b. h9 c. head

More information

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS:

WEBSITE PROJECT 2 PURPOSE: INSTRUCTIONS: REQUIREMENTS: WEBSITE PROJECT 2 PURPOSE: The purpose of this project is to begin incorporating color, graphics, and other visual elements in your webpages by implementing the HTML5 and CSS3 code discussed in chapters

More information

Go.Web Style Guide. Oct. 16, Hackensack Ave Hackensack, NJ GoAmerica, Inc. All rights reserved.

Go.Web Style Guide. Oct. 16, Hackensack Ave Hackensack, NJ GoAmerica, Inc. All rights reserved. Go.Web Style Guide Oct. 16, 2000 www.goamerica.net 2000 GoAmerica, Inc. All rights reserved. 401 Hackensack Ave Hackensack, NJ 07601 888 462 4600 Go.Web Style Guide 2 Introduction Go.Web is GoAmerica s

More information

Deccansoft Software Services

Deccansoft Software Services Deccansoft Software Services (A Microsoft Learning Partner) HTML and CSS COURSE SYLLABUS Module 1: Web Programming Introduction In this module you will learn basic introduction to web development. Module

More information

CSC Web Programming. Introduction to HTML

CSC Web Programming. Introduction to HTML CSC 242 - Web Programming Introduction to HTML Semantic Markup The purpose of HTML is to add meaning and structure to the content HTML is not intended for presentation, that is the job of CSS When marking

More information

Advanced Web Programming C2. Basic Web Technologies

Advanced Web Programming C2. Basic Web Technologies Politehnica University of Timisoara Advanced Web Programming C2. Basic Web Technologies 2013 UPT-AC Assoc.Prof.Dr. Dan Pescaru HTML Originally developed by Tim Berners-Lee in 1990 at CERN (Conseil Européen

More information

HTML & XHTML Tag Quick Reference

HTML & XHTML Tag Quick Reference HTML & XHTML Tag Quick Reference This reference notes some of the most commonly used HTML and XHTML tags. It is not, nor is it intended to be, a comprehensive list of available tags. Details regarding

More information

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II

COMPUTER APPLICATIONS IN BUSINESS FYBMS SEM II CHAPTER 1: HTML 1. What is HTML? Define its structure. a. HTML [Hypertext Markup Language] is the main markup language for creating web pages and other information that can be displayed in a web browser.

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

Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 2 Introduction to XHTML

Copyright 2008 Pearson Education, Inc. Publishing as Pearson Addison-Wesley. Chapter 2 Introduction to XHTML Chapter 2 Introduction to XHTML 2.1 Origins and Evolution of HTML HTML was defined with SGML Original intent of HTML: General layout of documents that could be displayed by a wide variety of computers

More information

WML2.0 TUTORIAL. The XHTML Basic defined by the W3C is a proper subset of XHTML, which is a reformulation of HTML in XML.

WML2.0 TUTORIAL. The XHTML Basic defined by the W3C is a proper subset of XHTML, which is a reformulation of HTML in XML. http://www.tutorialspoint.com/wml/wml2_tutorial.htm WML2.0 TUTORIAL Copyright tutorialspoint.com WML2 is a language, which extends the syntax and semantics of the followings: XHTML Basic [ XHTMLBasic ]

More information

Table of Contents. MySource Matrix Content Types Manual

Table of Contents. MySource Matrix Content Types Manual Table of Contents Chapter 1 Introduction... 5 Chapter 2 WYSIWYG Editor... 6 Replace Text... 6 Select Snippet Keyword... 7 Insert Table and Table Properties... 8 Editing the Table...10 Editing a Cell...12

More information

HTMLnotesS15.notebook. January 25, 2015

HTMLnotesS15.notebook. January 25, 2015 The link to another page is done with the

More information

2.1 Origins and Evolution of HTML

2.1 Origins and Evolution of HTML 2.1 Origins and Evolution of HTML - Derived from SGML - Original intent: General layout of documents that could be displayed by a wide variety of computers - Recent versions: - HTML 4.0-1997 - Introduced

More information

Indian Institute of Technology Kharagpur. HTML Part III. Prof. Indranil Sen Gupta Dept. of Computer Science & Engg. I.I.T.

Indian Institute of Technology Kharagpur. HTML Part III. Prof. Indranil Sen Gupta Dept. of Computer Science & Engg. I.I.T. Indian Institute of Technology Kharagpur HTML Part III Prof. Indranil Sen Gupta Dept. of Computer Science & Engg. I.I.T. Kharagpur, INDIA Lecture 15: HTML Part III On completion, the student will be able

More information

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

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

More information

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

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS

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

More information

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

2.1 Origins and Evolution of HTML. 2.3 HTML Document Structure

2.1 Origins and Evolution of HTML. 2.3 HTML Document Structure Chapter 2 Introduction to XHTML 2.1 Origins and Evolution of HTML HTML was defined with SGML Original intent of HTML: General layout of documents that could be displayed by a wide variety of computers

More information

Creating A Web Page. Computer Concepts I and II. Sue Norris

Creating A Web Page. Computer Concepts I and II. Sue Norris Creating A Web Page Computer Concepts I and II Sue Norris Agenda What is HTML HTML and XHTML Tags Required HTML and XHTML Tags Using Notepad to Create a Simple Web Page Viewing Your Web Page in a Browser

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

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 9 9 Working with Tables Are you looking for a method to organize data on a page? Need a way to control our page layout?

More information

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

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

More information

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

Internet publishing HTML (XHTML) language. Petr Zámostný room: A-72a phone.:

Internet publishing HTML (XHTML) language. Petr Zámostný room: A-72a phone.: Internet publishing HTML (XHTML) language Petr Zámostný room: A-72a phone.: 4222 e-mail: petr.zamostny@vscht.cz Essential HTML components Element element example Start tag Element content End tag

More information

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

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

More information

HTML: Parsing Library

HTML: Parsing Library HTML: Parsing Library Version 6.7 October 26, 2016 (require html) package: html-lib The html library provides functions to read conformant HTML4 documents and structures to represent them. Since html assumes

More information

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

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

More information

SYBMM ADVANCED COMPUTERS QUESTION BANK 2013

SYBMM ADVANCED COMPUTERS QUESTION BANK 2013 CHAPTER 1: BASIC CONCEPTS OF WEB DESIGNING 1. What is the web? What are the three ways you can build a webpage? The World Wide Web (abbreviated as WWW or W3, commonly known as the web), is a system of

More information

Chapter 4 Creating Tables in a Web Site Using an External Style Sheet

Chapter 4 Creating Tables in a Web Site Using an External Style Sheet Chapter 4 Creating Tables in a Web Site Using an External Style Sheet MULTIPLE RESPONSE Modified Multiple Choice 1. Attributes are set relative to the elements in a table. a. line c. row b. column d. cell

More information

LAB MANUAL SUBJECT: WEB TECHNOLOGY CLASS : T.E (COMPUTER) SEMESTER: VI

LAB MANUAL SUBJECT: WEB TECHNOLOGY CLASS : T.E (COMPUTER) SEMESTER: VI LAB MANUAL SUBJECT: WEB TECHNOLOGY CLASS : T.E (COMPUTER) SEMESTER: VI INDEX No. Title Pag e No. 1 Implements Basic HTML Tags 3 2 Implementation Of Table Tag 4 3 Implementation Of FRAMES 5 4 Design A FORM

More information

IMY 110 Theme 11 HTML Frames

IMY 110 Theme 11 HTML Frames IMY 110 Theme 11 HTML Frames 1. Frames in HTML 1.1. Introduction Frames divide up the web browser window in much the same way that a table divides up part of a page, but a different HTML document is loaded

More information

HTML 5 Tables and Forms

HTML 5 Tables and Forms Tables for Tabular Data Display HTML 5 Tables and Forms Tables can be used to represet information in a two-dimensional format. Typical table applications include calendars, displaying product catelog,

More information

Web Technology. HTML & xhtml

Web Technology. HTML & xhtml 01076541 Web Technology HTML & xhtml Introducing HTML and xhtml HTML standard is overseen by W3C Current major version is HTML 4.01 (release Dec. 1999) Added stricter rules to HTML 4.01 in Jan. 2000 creating

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

XHTML & CSS CASCADING STYLE SHEETS

XHTML & CSS CASCADING STYLE SHEETS CASCADING STYLE SHEETS What is XHTML? XHTML stands for Extensible Hypertext Markup Language XHTML is aimed to replace HTML XHTML is almost identical to HTML 4.01 XHTML is a stricter and cleaner version

More information

HTML CS 4640 Programming Languages for Web Applications

HTML CS 4640 Programming Languages for Web Applications HTML CS 4640 Programming Languages for Web Applications 1 Anatomy of (Basic) Website Your content + HTML + CSS = Your website structure presentation A website is a way to present your content to the world,

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

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

Wireframe :: tistory wireframe tistory.

Wireframe :: tistory wireframe tistory. Page 1 of 45 Wireframe :: tistory wireframe tistory Daum Tistory GO Home Location Tags Media Guestbook Admin 'XHTML+CSS' 7 1 2009/09/20 [ ] XHTML CSS - 6 (2) 2 2009/07/23 [ ] XHTML CSS - 5 (6) 3 2009/07/17

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

CITS1231 Web Technologies. HTML Tables and Page Design Issues

CITS1231 Web Technologies. HTML Tables and Page Design Issues CITS1231 Web Technologies HTML Tables and Page Design Issues Lecture Content Defining Tables Creating Hyperlinks Formatting Text Meta-data Good HTML practices 2 Creating a Newspaper-Style Layout 3 Table

More information

QUICK REFERENCE GUIDE

QUICK REFERENCE GUIDE QUICK REFERENCE GUIDE New Selectors New Properties Animations 2D/3D Transformations Rounded Corners Shadow Effects Downloadable Fonts @ purgeru.deviantart.com WHAT IS HTML5? HTML5 is being developed as

More information

CITS1231 Midterm Test (A total of 45 marks)

CITS1231 Midterm Test (A total of 45 marks) Computer Science and Software Engineering CITS1231 Midterm Test 2010 CRICOS Provider Code: 00126G CITS1231 Midterm Test (A total of 45 marks) Full Name: Username: Student Number: Signature: True/False

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

Chapter 4 Notes. Creating Tables in a Website

Chapter 4 Notes. Creating Tables in a Website Chapter 4 Notes Creating Tables in a Website Project for Chapter 4 Statewide Realty Web Site Chapter Objectives Define table elements Describe the steps used to plan, design, and code a table Create a

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

Web Publishing with HTML

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

More information

HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages.

HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages. vinsri76@yahoo.com +965-69300304 HTML What is HTML Hyper Text Markup Language is a computer based language used to create WebPages. Name Two text Editor which are used to create HTML page. They are: Notepad

More information

HTML: Fragments, Frames, and Forms. Overview

HTML: Fragments, Frames, and Forms. Overview HTML: Fragments, Frames, and Forms Michael B. Spring Department of Information Science and Telecommunications University of Pittsburgh spring@ imap.pitt.edu http://www.sis. pitt.edu/~spring Overview Fragment

More information

HTML & CSS. SWE 432, Fall 2017 Design and Implementation of Software for the Web

HTML & CSS. SWE 432, Fall 2017 Design and Implementation of Software for the Web HTML & CSS SWE 432, Fall 2017 Design and Implementation of Software for the Web HTML: HyperText Markup Language LaToza Language for describing structure of a document Denotes hierarchy of elements What

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

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