Thursday, May 21, 2009

Tutorial 02 - Basic HTML using Notepad

In Week 02, we learnt a few HTML tags and how to use them. Here are the tags covered in the lab class.
Note: Due to the limitations of this blog content editor, I have to omit out the arrow brackets (<>) that make up the html tags syntax.

html
The basic tag indicating that the file is in HTML language, viewable in web browser.

head
The header tag, where the content under this tag will be displayed on the web browser headed.

body
The body tag, where the content under this tag will be displayed in the web page.

title
The title tag, for the title of web page located under the header tag.

p
P for paragraph – indicate a paragraph of content.

br
BR for break, or line break – instead of having paragraph, this tag can be used when the text is required to be in the next line.

b
B for bold – to bold certain texts.

i
I for italic – to make certain texts italic.

u
U for underline – to make certain texts appear in underlined.

img
IMG for image – an independent tag for image and its attributes, such as source (src), alignment (align) and border (border).

a
Hyperlink tag – to indicate the object it embeds between the open and close tags of < > and enables users to clink and jump to another webpage.

Question:
Choose ONE of the following HTML tags, and briefly explain their meaning and usage, mentioning if the tags are independent tags (meaning that it does not come in a pair of open and close tags), and examples of attributes the tags may have.

Post your answer using the “Comment” feature in this blog site. You may need to do some research online to answer this. Refer to the samples above on how to answer.

  1. font
  2. hr
  3. table
  4. tr
  5. td
  6. ul
  7. ol
  8. li
  9. form
  10. input
  11. embed
  12. frame
  13. layer
  14. span
  15. div
Effort counts!
- MsSha
21 May 2009

88 comments:

  1. This comment has been removed by the author.

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
  3. embed - it is used to put in the browser plugin in the page. for example embedding flash into page. It is an independent tag.

    NAME: YAP WEI KEAN
    ID: 1000818468

    ReplyDelete
  4. 1. font

    font tag - it allows the designers to change the size, the typeface and the colour of their text. This type of tag isn't an independent tag, as it comes in a pair of open and close tags.

    The font tag have the following attributes:

    class - Specifies a classname for an element
    Value: classname

    dir - Specifies the text direction for the content in an element
    Value: rtl, ltr

    id - Specifies a unique id for an element
    Value: id

    lang - Specifies a language code for the content in an element
    Value: language_code

    style - Specifies an inline style for an element
    Value: style_definition

    title - Specifies extra information about an element
    Value: text

    Name: Khoo Kah Wei
    Student ID: 1000715956

    ReplyDelete
  5. This comment has been removed by the author.

    ReplyDelete
  6. ul for unordered list-indicate a certain list on the webpage.
    name: tan xue
    ID: 1000614945

    ReplyDelete
  7. This comment has been removed by the author.

    ReplyDelete
  8. Q9.form
    The form tag is used to create an HTML form for user input.

    A form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. A forms can also contain select menus, textarea, fieldset, legend, and label elements.

    Forms are used to pass data to a server.

    Name: Cho Shi Yee
    ID: 1000717091

    ReplyDelete
  9. 12. frame

    It delimits a single frame, or region, within the frameset. A separate document linked with the src attribute appears inside.

    Name: Yee Keng Sing
    ID: 1000716545

    ReplyDelete
  10. 12. Frame

    With frames, can display more than one HTML document in the same web browser window.Each HTML document is called a frame, and each frame is independent of the others.

    The frameset tag defines a set of rows or columns. The values of the rows or columns indicate the amount of screen area each row or column will occupy.

    For example, the first column is set to be 25% of the width of the browser window while the second column s set to be 75% of the browser window. The HTML document "frame_a.htm" is to put into first column, and the HTML document "frame_b.htm" is put in second column:

    (frameset cols="25%,75")
    (frame scr="frame_a.htm")
    (frame scr="frame_b.htm")
    (/frameset)

    ps. <> symbol replace by ()

    A few examples of frame tags:
    frameset: defines a set of frames
    frame: defines a sub window(a frame)
    noframe:defines a noframe section for browsers that do not handle frames
    iframe:defines an inline sub window(frame)

    Name: Angeline Ng Feng Hui
    Id: 1000717076

    ReplyDelete
  11. Question No.1 :
    "Font"???

    - is used to manage the size, to choose the style (typeface), and to select the color of the words/sentences in HTML Language.

    Name : Robert Halim
    ID : 1000820303
    COurse : Mass COmmunication

    ReplyDelete
  12. 2. hr

    hr stands for horizontal rule. A horizontal line will appear wherever you code them in a webpage. It can be varied in thickness, length and color depending on how you code them.

    ReplyDelete
  13. 2.hr

    hr is used to draw horizontal rules across the browser window. If the margins are currently smaller, for example because of images (IMG) which are placed against the margins, the rule will extend to these margins instead of the whole window. A horizontal rule is typically used to separate sections within a document.

    Name: Yip Wei Lu
    ID: 1000819575

    ReplyDelete
  14. 15.div:

    The div tag defines a division or a section in an HTML document.It is often used to group block-elements to format them with styles.

    Name: Chew Wang Jin
    ID:1000818775

    ReplyDelete
  15. the hr tag is used to create a horizontal line across the page.. this is normally used as saperator for different paragraph or unrelated content.

    Student ID: 1000818735
    Name: Ko Teck Xian

    ReplyDelete
  16. 15.div
    div for division - often used to group block-elements to format them with styles.

    ReplyDelete
  17. 15. div
    div for division,
    used to group block-elements to format them with styles.

    Wong Qi Yuan
    1000818527

    ReplyDelete
  18. 4. Tr

    The Tr tag defines a row in an HTML table.

    A tr element contains one or more th or td elements

    name: steven joeng
    id: 1000819856

    ReplyDelete
  19. This comment has been removed by the author.

    ReplyDelete
  20. li - List Item

    The li tag is used in conjuction with the ol (ordered list) and ul (unordered list) tags, to mark an item as a new item in a list. It is NOT an independent tag.

    The syntax, ommiting the arrow brackets, is as follows:

    ul
    li Item One /li
    li Boring Two /li
    li Yet another boring item /li
    /ul

    This should create a list, with each item in a new line and accompanied by either a number or (such as in this case) a bullet point.

    Koh Jun Lin
    1000820239

    ReplyDelete
  21. Forms are the most popular way to make web pages interactive. Like forms on paper, a form on a web page allows the user to enter requested information and submit it for processing. (Fortunately, forms on a web page are processed much faster.)

    The following pages provide a beginning tutorial in how to put forms on your web page, how to include scripts, and some other common forms concepts.

    ID:1000820828
    Amir Hossein Kashani

    ReplyDelete
  22. Q4.tr

    The (tr) tag stands for table row and the function of (tr) tag is to defines the row in an HTML table. A(tr) element contains one or more (th) or (td) elements. Regarding whether (tr) tag is a independent tag or not, technically, the end tag (/tr) is optional. However, Netcape has a history of getting confused with the end tag is missing so it's best to always use (/tr). So, it depends on the browser used whether to include end tag (/tr) or not.

    The following are optional attributes for tag(tr):

    (i) align -Its value are right, left, center, justify and char. Its function is to align the content in the table row.

    (ii) bgcolor -deprecated. Use styles instead. Its function is to specify a background color for specific table row.

    (iii) char -Its value is character. Its function is to align the content in a table row to the character.

    (iv) charoff -Its value is number. Its function is to set the numbers of characters the content will be aligned from the character specified by the char attribute.

    (v) valign -Its value are top, middle, bottom and baseline. Its function is to vertical aligns the content in a table row.

    The tag (tr) supports the following standard attributes:

    (i) class - Its value is classname. It is used to specify a classname for an element.

    (ii) dir -Its value is rtl and ltr. It is used to specify the text direction for the content in an element.

    (iii) id -Its value is id. It is used to specify a unique id for an element.

    (iv) lang -Its value language_code. It is used to specify a language code for the content in an element.

    (v) style -Its value is style_definition. It is used to specify an inline style for an element.

    (vi) title -Its value is text. It is used to specify extra information about an element.

    (vii) xml:lang -Its value is language_code. It is used to specify a language code for the content in an element, in XHTML documents.

    *open and close angle bracket is replace with ( and ) respectively.

    Name: Loh Boon Chin
    ID : 1000818050

    ReplyDelete
  23. As one of the basic text tags, the font tag is a tag that helps to specifies the font face,font size, and colour of the text. This tags eventually help to enhance the specifaction of the web documents.This tag is not an independent tag as it requires close tag.The example of html font tags attribute : id,lang,style,title.

    Name: Koh Wai Shan (Corine)
    Student ID: 1000613882

    ReplyDelete
  24. OLORUNGBADE OPEYEMI OLUWANISHOLA said...

    embedded..This is used to put in the browser plugins on the page
    plugins are extra features a browser as.

    ReplyDelete
  25. 5.td

    The (td) tag defines a standard cell in an HTML table.

    An HTML table has two kinds of cells:

    1. Header cell: contains header information (created with the th element)

    2. Standard cell: contains data (created with the td element)

    the text in a th element is bold and centered.

    the text in td element is regular and left-aligned.

    Name:Lim Yu Wei
    ID:1000818570

    ReplyDelete
  26. 15 .div

    div is a block-level element . The div block visually isolates a section of a document on the page.


    Name : Theh Jia Wen
    ID : 1000922395

    ReplyDelete
  27. the hr tag is an independent tag,it is use to create a horizontal line in a html page.The hr tag do support the title,id,and style attributes.

    Name:Chan Kein Yeow
    ID:1000922269

    ReplyDelete
  28. hr: The hr tag creates a horizontal line in an HTML page.The hr element can be used to separate content in an HTML page.

    This is normally used as saperator for different paragraph or unrelated content.The hr tag do support the title,id,and style attributes.

    Name: zhou Lu
    ID: 1000716208

    ReplyDelete
  29. 2. hr

    The hr is used to include a horizontal line across a page, which is usually used to divide up sections of text.

    hr size is used to specify the height of horizontal rule.

    hr width is used to specify thw width of the horizontal rule.

    hr align is used to set the alignment of the horizontal rule, the acceptable values are left, right and center.

    hr noshade is used when a solid bar is requested for the horizontal break.

    hr color used to change the color of horizontal rule.

    Name : Tan Yee Chiew
    ID : 1000820334

    ReplyDelete
  30. embed-----
    In computers, an Embedded system is a special-purpose system in which the computer is completely encapsulated by the device it controls
    In computers, embedding media into a text document, forming a compound document
    Distributed generation, also known as embedded generation or decentralised generation
    it is used to put in the browser plugin in the page. for example embedding flash into page. It is an independent tag.
    Name:Gao JingYa
    ID:1000717240

    ReplyDelete
  31. 7.ol
    Note: ( ) replace to < >

    First of all, the (ol) stands for "Office Lady". Haha, just kidding. Relax before we start.

    Actually (ol) is stands for ordered list. The usage for (ol) tag is used to create an ordered list. The list can be numerical or alphabetical. "Ordered" means that the order of the items in the list is important. Inside the (ol) tag, we can using (li) to begin each list item. Inside the list item, we can put text, another paragraph, another list, or other tags that could go in the body.

    To show this, browsers automatically number the list. Note in this example that the HTML does not give any numbers: the numbers are automatically made by the browser.

    Here is a sample:
    (ol)
    (li)Turn on your television.
    (li)Change to the channel that you prefer.
    (li)Turn off your television when you finished watching.
    (/ol)

    Produces this:
    1. Turn on your television.
    2. Change to the channel that you prefer.
    3. Turn off your television when you finished watching.

    Each nested list starts counting at 1 (or at the value of START).

    Next, (ol) tag has 3 attributes which are optional attributes, standard attributes, and event attributes.

    Optional Attributes: type, start, and compact
    Standard Attributes: class, dir, id, lang, style, title, and xml:lang
    Event Attributes: onclick, ondblclick, onmousedown, onmousemove, onmouseout, onmouseover, onmouseup, onkeydown, onkeypress, and onkeyup

    Name: Kua Sin Yee
    Student ID: 1000716479

    ReplyDelete
  32. Embed tags defines embedded content, such as plug-in.

    It is an independent tag whereby one cannot write text between the start and end tag. It is also one of the feature in HTML to show older browser that they do not support this tag, like for example, audio or video plug ins.

    It also includes attributes (in this case, src attribute is a must have) such as the height and the type of the plug in.


    name: O Hui Lei
    1000717090

    ReplyDelete
  33. Font:

    is used to change the size, color, style of font, which is words or sentences in html language.


    Name:Chong Jing Seng
    ID :1000922626

    ReplyDelete
  34. Question 13: Layer

    Layer tag is a method of dynamic HTML programming and allowed users to add animation or do some position of decoration in a webpage.

    Name: Ng Yin Sheng
    ID: 1000818825

    ReplyDelete
  35. Name : Conrad Edmund Bateman
    Student I.D : 1000717217

    Question 14.
    (Span)

    *NOTE* I have replaced all <> with ()

    This tag provides no visual change by itself but instead provides a 'hook' to a part of a text or to a part of a document. In other words, this tag allows you to perform localized formatting only.

    The 'hooked' part of a text or document now can add certain styles (like colour or font) to the content or manipulate the content with for example, JavaScript.

    The (span) tag is an inline element and can only contain other inline elements. It can be inside (p) tags or (div) tags. Unlike (div) tags, (span) tags cannot be used to group block elements.

    (span) tags are better closed (/span) as soon as they are opened, then only place the contents within the element.

    Eg:

    (html)
    (head)
    (style type="text/css")
    span.blue (color:lightskyblue;font-weight:bold
    span.green (color:darkgreen;font-weigh:bold)
    (/style)
    (/head)

    (body)

    (p)My motorcycle is (span class="blue")light blue(/span) whereas my my car is (span class="green")dark green(/span).(/p)

    (/body)
    (/html)

    From here, the words 'light blue' will appear in the color of light sky blue and the words 'dark green' will appear in the dark green color.

    ReplyDelete
  36. This comment has been removed by the author.

    ReplyDelete
  37. Question 9: (form)


    A (form) is used to input elements such as text fields, submit buttons, radio-buttons, checkboxes, and more. Among the other things that can be input are select menus, textarea, fieldset, legend, and label elements. These forms are used to pass data to a server.

    If, usually, an HTML element would usually need a (br) to create a line break before and after, but a (form) creates the line breaks before and after itself.

    For example:

    On an "accept" attribute, hence the value "MIME_type", it specifies the types of files that can be submitted through a file upload.

    However on an attribute and value "name", it specifies the name for a form.

    Name: Siti Sarah Abu Samad
    ID: 1000717580

    ReplyDelete
  38. Question 1 - Font

    Font tags, as used in HTML (Hypertext Mark-up Language) codings, are used for formatting texts that the designers or writers use in their HTML programming. There are 3 attributes of font tag, comprising of font size, color and face, and these could be amended to change the looks of the texts used.

    The attributes specific to font tag, as mentioned above are:

    [all open and close of tags are replaced with ()]

    (font size) attribute changes the size of the fonts used, whether to increase or decrease font sizes, with a minimum and maximum value of 1 and 7.
    (font color) attribute changes the color of the text. The value of the color attribute can be in hexadecimal [code number of the color] or color name.
    (font face) attribute sets the font of the text, like Verdana, Arial, or Times New Roman according to the availability of the fonts, as different PCs have different collection of fonts in them, and might result in slight variation of the intended font used from PC to PC.

    Font tag is not an independent tag, and therefore would require open and close tags [font and /font]. There is no restriction for usage of attributes in font tags, and could be used in as many combination as possible, as long as it stays within the requirements.

    Other font tag attributes include:

    dir - Specifies the text direction for the content
    Value: rtl, ltr

    class - Specifies a classname for the content, or document wide identifier
    Value: classname

    id - Specifies a unique id, also as document wide identifier
    Value: id

    lang - Specifies a language code
    Value: language_code

    title - Specifies a title to associate with the element.
    Value: text

    style - Specifies an inline style (CCS)
    Value: style_definition

    However, it should be noted that the font tag has been deprecated in the latest versions of HTML [HTML 4, 5 and XHTML]. Style sheets [CCS or Cascading Style Sheets] will be more commonly used to define and specify layouts and displays or texts in HTML elements.

    Name: Lam Foo Tseng
    ID: 1000717823

    ReplyDelete
  39. Question 9:form

    The (form) tag is used to create an HTML form for user input.

    A form can contain input elements like text fields, checkboxes, radio-buttons, submit buttons and more. A forms can also contain select menus, textarea, fieldset, legend, and label elements.

    Forms are used to pass data to a server.

    Name: Zheng Qiao
    ID:1000615026

    ReplyDelete
  40. 12.frame

    The HTML frame tag defines a single frame.Each frame is independent of the others.This will allow author to load an independent HTML document into the space designated for this frame.

    Name:Kiu Teck Hwa
    ID: 1000819873

    ReplyDelete
  41. Question 9 : Form

    HTML Forms are used to select different kinds of user input.
    A form is an area that can contain form elements. Form elements are elements that allow the user to enter information (like text fields, drop-down menus, radio buttons, checkboxes, etc.) in a form. A form is defined with the (form) tag.

    (form)
    (input)
    (input)
    (/form)

    *I've replaced <> with ()

    Name : Ng Jian Ling
    ID : 1000717378

    ReplyDelete
  42. Name: Aaron Liew Siao Xian
    Student ID: 1000820159

    3. table

    The table tag defines an HTML table used for tabular data. The table tag is not an independant tag as it requires both open and close tags.

    There are simple and complex HTML tables. A simple HTML table contains the table element and one or more th, tr, and td elements while a more complex HTML table may have caption, col, colgroup, thread, tfoot, and tbody elements.

    The optional attributes for the table tag includes the following:
    align
    bgcolor
    border
    cellpadding
    cellspacing
    frame
    rules
    summary
    width

    The standard attributes supported includes the following:
    class
    dir
    id
    lang
    style
    title
    xml:lang

    The table tag supports the following event attributes:
    onclick
    ondblclick
    onmousedown
    onmousemove
    onmouseout
    onmouseover
    onmouseup
    onkeydown
    onkeyup
    onkeypress

    ReplyDelete
  43. Name:Chijioke Chukwunedum Peter
    ID:1000615024

    The form tag is used to create an HTML for user input.
    A form could contain input elements like text fields, checkboxes etc

    ReplyDelete
  44. 8. li

    li for list item. It comes with an open and close tags. It functions as the numbering or bullets we used in a '.doc' file.

    Example:
    (ol type="a")
    (li)List item 1(/li)
    (li)List item 2(/li)
    (li)List item 3(/li)
    (li)List item 4(/li)
    (/ol)

    It will appear as:
    a. List item 1
    b. List item 2
    c. List item 3
    d. List item 4

    *I've replaced <> with ()
    Name: Ong May Lyn
    Student ID: 1000820081

    ReplyDelete
  45. Q.12: The HTML frame tag defines a single frame. It can be displayed independently. HTML Frames can also be used to split a web page to load multiple HTML files or pages into one webpage. The speaces for frames are defined with theHTML frameset tag.

    Example:
    1.it(name) - this attribute assigns an identifier to the assocaited element. This identifier must be unique in the document an can be used to refer to that element.
    [p id="paragraph1], this is the first paragraph named as paragraph1.

    2.longdesc - defines the address of a resource providing a description for this frame.
    [frame name="articles" src="articles-index.html"longdesc="whats-artciles-frame.html"]

    3.src(uri) -this attribute defines the address of the initial content for the frame
    [frame name="menu"src=menu.html"]

    4.noresize - when present, this attribute indicates that users shld not be able to change the frame's size.
    [frame name="title"noresize src="title.html"]

    *I've used []to replaced<>
    Name: Liew San Hua
    ID : 1000818835

    ReplyDelete
  46. 11. Embed (HTML)

    There are different codes to embed music, video etc

    type (EMBED...)
    followed by
    1. SRC: URL of resource to be embedded
    2. WIDTH: width of area in which to show resource
    3. HEIGHT: height of area in which to show resource
    4. ALIGN: how text should flow around the object
    5. NAME: name of the embedded object
    6. PLUGINSPAGE: where to get the plugin software
    7. PLUGINURL: where to get the JAR archive for automatic installation
    8. HIDDEN: if the object is visible or not
    9. HREF: make this object a link
    10. TARGET: frame link to
    11. AUTOSTART: if the sound/clip should start automatically
    12. LOOP: how many times to play the sound/clip
    13. PLAYCOUNT: how many times to play the sound/clip
    14. VOLUME: how loud to play the sound
    15. CONTROLS: which sound control to display
    16. CONTROLLER: if the controls should be displayed
    17. MASTERSOUND: indicates the object in a sound group with the sound to use
    18. STARTTIME: how far into the sound to start and stop
    19. ENDTIME: when to finish playing


    (EMBED...) puts a browser plugin on your page. A plugin is a special program located on the client computer (not on your web server) that handles its own special type of data file. The most common plugins are for sounds and clips. The (EMBED...) tag gives the location of a data file that the plugin should handle.

    (EMBED...) uses the SRC attribute to indicate the location of the plugin data file, and usually gives a WIDTH and HEIGHT of the plugin area.


    * I have used () to replace <>

    Name: Melanie Boi Zhu-Han
    ID: 1000820325

    ReplyDelete
  47. designers are allowed to change the font text, shape, size, colour and anything else... well, if not all, then most...

    Font tag attributes include:

    class - Specifies a classname for an element
    Value: classname

    dir - Specifies the text direction for the content in an element
    Value: rtl, ltr

    id - Specifies a unique id for an element
    Value: id

    lang - Specifies a language code for the content in an element
    Value: language_code

    style - Specifies an inline style for an element
    Value: style_definition

    title - Specifies extra information about an element
    Value: text

    Joseph Cheong Meng Chye
    I/D: 1000819112

    ReplyDelete
  48. Font: Used to specify the colour, style, type face of the text in the html document

    Noer Muthia Alivia Astari Surya
    1000819471

    ReplyDelete
  49. naem:Ehsan ali
    I.D:1000818446
    9.FORM?
    These elements can be combined into a form or in some instances used separately as user-interface controls; in the document, they can be simple HTML or used in conjunction with Scripts. HTML markup specifies the elements that make up a form, and the method by which it will be submitted. However, some form of scripts (server-side, client-side, or both) must be used to process the user’s input once it is submitted.

    (These elements are either block or inline elements, but are collected here as their use is more restricted than other inline or block element.

    Creates a form. The form element specifies and operates the overall action of a form area, using the required action attribute.
    Standardised in HTML 2.0; still current.

    ReplyDelete
  50. name:ravinde singh
    id:1000819822
    3.table?
    The format of HTML Tables was proposed in the HTML 3.0 Drafts and the later RFC 1942 HTML Tables. Some elements in these proposals were included in HTML 3.2; the present form of HTML Tables was standardised in HTML 4.

    (These elements are either block or inline elements, but are collected here as they are only used together.)

    ReplyDelete
  51. name:ravinder singh
    id:1000819822
    3.table?
    The format of HTML Tables was proposed in the HTML 3.0 Drafts and the later RFC 1942 HTML Tables. Some elements in these proposals were included in HTML 3.2; the present form of HTML Tables was standardised in HTML 4.

    (These elements are either block or inline elements, but are collected here as they are only used together.)

    ReplyDelete
  52. Ntongo Nitah 1000819150
    li List item.Defines an item within an ordered, unordered, directory, or menu list and used in conjunction with ul or ol to make an unordered list or ordered list respectively. li is not an independent tag as it has both open and close brackets.

    ReplyDelete
  53. Q.10) (input)*Note: < > is replaced with ( )

    According to Wikipedia, input elements allow a variety of standard form controls to be implemented. It is standardised in HTML 2.0 and still current. (input) is an independent tag, where (/input) is not needed. Below are some examples of how to use (input) tags:

    Input Types:type="checkbox"A checkbox. Can be checked or unchecked.

    type="radio"A radio button. If multiple radio buttons are given the same name, the user will only be able to select one of them from this group.

    type="button"A general-purpose button. The element (button) is preferred if possible (i.e. if the client supports it) as it provides richer possibilities.

    type="submit"A submit button.

    type="image"An image button. The image URL may be specified with the src attribute.

    type="reset"A reset button for resetting the form to default values.

    type="text"A one-line text input field. The size attribute specifies the default width of the input in character-widths. maxlength sets the maximum number of characters the user can enter (which may be greater than size).

    type="password"A variation of text. The difference is that text typed in this field is masked — characters are displayed as an asterisk, a dot or another replacement. It should be noted, however, that the password is still submitted to the server as clear text, so an underlying secure transport layer like HTTPS is needed if confidentiality is a concern.

    type="file"A file select field (for uploading files to a server).

    type="hidden"Hidden inputs are not visible in the rendered page, but allow a designer to maintain a copy of data that needs to be submitted to the server as part of the form. This may, for example, be data that this web user entered or selected on a previous form that needs to be processed in conjunction with the current form.

    Thank you very much. =)

    ReplyDelete
  54. Name: Lam Pui Ling (Pauline)
    Student ID: 1000717317

    My answer was for Q.10 - (input).

    Thanks. =)

    ReplyDelete
  55. Q2. hr

    -hr is used to create a horizontal line of your page, and usually used to divide up sections of text or photo. hr size can be adjust depends on what size you want it to be.

    -hr align is used to set the alignment of the horizontal rule, the acceptable values are left, right and center.

    -hr noshade is something like a solid bar.

    -hr color obviously is something which can change the border line's colour.


    Name : Yeong Wye Khin
    I.D : 1000820329

    ReplyDelete
  56. 3. table

    The table tag defines an HTML table.

    A simple HTML table consists of the table element and one or more tr, th, and td elements.

    The tr element defines a table row, the th element defines a table header, and the td element defines a table cell.

    A more complex HTML table may also include caption, col, colgroup, thead, tfoot, and tbody elements.

    Name: Chai Yean Teng Elaine
    ID: 1000613767

    ReplyDelete
  57. Basic text tags, the font tag is a tag that helps to specifies the font face,font size, and colour of the text. This tags eventually help to enhance the specification of the web documents.This tag is not an independent tag as it requires close tag.The example of html font tags attribute : tittle,lang,style,id.

    Name: Abilash Menon
    ID:1000820800

    ReplyDelete
  58. hr: The hr tag creates a horizontal line in an HTML page.The hr element can be used to separate content in an HTML page.
    hr noshade is used when a solid bar is requested for the horizontal break.
    Name :wang hui
    I.D:1000717220

    ReplyDelete
  59. Font is the design or style of the wordings.
    It allows to modify the design, color and sizes of the wordings.

    Name: Liew Hsu Wen, Stefanie
    ID No: 1000922641

    ReplyDelete
  60. A form is defined with (form)tag. Forms is an area that can contain form element, and allow the user to enter information in form. Such as: text field, textatarea fields, drop-down menus, radio buttons, checkboxes.

    Name:soo phooi fong
    ID: 1000614640

    ReplyDelete
  61. 8. li - a list item. The element must be contained within DIR, MENU, OL or UL. Used as to list out item,value,types and common attributes.

    Name: Soong Lye Ping
    ID: 1000613615

    ReplyDelete
  62. Question 4

    name: Yeap Hwei Zhen (jane)
    student id: 1000818890

    Tr stands for Table Row. The characteristics of tr are as follow:
    Appearance: (TR) [(/TR)]
    Attributes: ALIGN=left|right|center, VALIGN=top|middle|bottom
    Contents: TH, TD.

    May occur in: TABLE.


    HTML tables are constructed as a sequence of rows. Each row of table cells should be enclosed in a TR tag. The end tag is optional, since it is usually obvious to see where a row ends - where the new row begins, or where the entire table ends.
    TR elements must be contained within a row group defined by THEAD, TFOOT, or TBODY. Since the start and end tags of TBODY are optional when the table has one TBODY and no THEAD or TFOOT, the simple table structure of HTML 3.2 is still valid:
    (TABLE)
    (TR)
    (TH)Abbreviation(/TH)
    (TH)Long Form(/TH)
    (/TR)
    (TR)
    (TD)AFAIK(/TD)
    (TD)As Far As I Know(/TD)
    (/TR)
    (/TABLE)

    The ALIGN and VALIGN attributes control the horizontal and vertical alignment of the entire row. ALIGN can be set for left, right or centered cells. VALIGN indicates that the table cell's contents should appear at the top, the middle or the bottom of the row.

    note: the <> symbol has been replaced with ()

    ReplyDelete
  63. Modem known from modulator-demodulator is a device that modulates an analog carrier signal to encode digital information, and also demodulates such a carrier signal to decode the transmitted information. it produces a signal that can be transmitted easily and decoded to reproduce the original digital data. Modems can be used over any means of transmitting analog signals, from driven diodes to radio.

    Modems are generally classified by the amount of data they can send in a given time, normally measured in bits per second

    RUBAMBURA ALLAN
    1000818228

    ReplyDelete
  64. This comment has been removed by the author.

    ReplyDelete
  65. 7. ol
    ol creates an ordered list. The type attribute of (ol) list determines which kind of bullet will be used for listing elements. The ol tag comes in a pair of open and close tags, (ol)(/ol).

    There are three types of bullets for the (ol) tag - Alphabet, Roman numerals and numbers/digits.

    For example,
    (ol type="1")
    (li)Item 1(/li)
    (li)Item 2(/li)
    (li)Item 3(/li)
    (/ol)

    The type attribute has been set to 1, Arabic numerals (digits). This is the default and you don't need to specify it.
    The above code is rendered in a browser as:

    1. Item 1
    2. Item 2
    3. Item 3

    P/s: () is used instead of <> to avert syntax error.

    -Chan Yuet Ai, 1000922541-

    ReplyDelete
  66. This comment has been removed by the author.

    ReplyDelete
  67. Embed is a term used to describe an object, software, or hardware that is independent and does not need an external program or device to run it.
    For instance, in Web page design, one can link to or insert a video image or sound file into the page so that it is hyperlinked and clickable.
    When click on, the video image or sound file is played as the operation system usually contains a built-in multimedia application to play it.

    Ng Pei Tse
    1000819868

    ReplyDelete
  68. Q11. embed tag
    Definition and Usage

    The embed tag defines embedded content, such as a plug-in.

    Note: The embed element must have a src attribute.

    Tip: You can NOT write text between the start and end tags, to show older browser that they do not support this tag, like for audio and video.

    Daniel sihombing
    1000820186

    ReplyDelete
  69. This comment has been removed by the author.

    ReplyDelete
  70. 4. Td
    Table standand line. td elements must appear within a table element.
    (1) align -Its value are right, left, center, justify and char. Its function is to align the content in the table row.
    (2) valign -Its value are top, middle, bottom and baseline. Its function is to vertical aligns the content in a table row.
    (3) bgcolor -deprecated. Use styles instead. Its function is to specify a background color for specific table row.

    ID:1000820134
    Name:Pan DengFeng

    ReplyDelete
  71. Okenda Worenwu
    1000717694

    Q1 what is a font

    font is a combination of these:

    * A typeface or style of printable characters
    * A group of characters for selection (described in Font Architecture)
    * A map that determines which of the selected characters is to be printed or displayed (described in Font Architecture)

    ReplyDelete
  72. This comment has been removed by the author.

    ReplyDelete
  73. qution:1
    font
    the font is tag sepecifies the font face ,font size and font color of text

    saramohammed
    id:1000818215

    ReplyDelete
  74. NAME AKINSINDE IDRIS
    ID NUMBER: 1000921886
    COURSE: BUSINNESS INFORMATION SYSTEM
    SUBJECT: INTRODUCTION TO INTERNET TECHONOLOGY
    WHAT IS hr in html code

    ANSWER:
    The hr tag creates a horizontal line in an HTML page.
    The hr element can be used to separate content in an HTML page.
    Browser Support The hr tag is supported in all major browsers.Differences Between HTML and XHTML
    In HTML the hr tag has no end tag.
    In XHTML the hr tag must be properly closed, like this: hr.
    All "presentation attributes" of the hr element were deprecated in HTML 4.01, and are not supported in XHTML 1.0 Strict DTD.The hr is used to include a horizontal line across a page, which is usually used to divide up sections of text.hr size is used to specify the height of horizontal rule.
    hr width is used to specify thw width of the horizontal rule.
    hr align is used to set the alignment of the horizontal rule, the acceptable values are left, right and center.
    hr noshade is used when a solid bar is requested for the horizontal break.
    hr color used to change the color of horizontal rule.

    ReplyDelete
  75. question 1

    FONT
    - in font you will be able to set the font type, size and the color.
    this is not an independant tag because it has a open and close tag.

    YAP LIN FOONG
    1000819999

    ReplyDelete
  76. Layer

    layer tag is a new tag that allows authors to position and animate (through scripting) elements in a page. A layer can be thought of as a separate document that resides on top of the main one, all existing within one window.

    Balamurugan Radakrishnan
    1000717097

    ReplyDelete
  77. 15. div

    Example

    div style="color:#00FF00"
    h3This is a header/h3
    pThis is a paragraph./p
    /div

    *** Note: < and > is not allowed to insert. so, i did not put it.

    The div tag defines a division or a section in an HTML document.

    The div tag is often used to group block-elements to format them with styles.

    Name: Ray Ng Kean Teck
    Student ID: 1000716139

    ReplyDelete
  78. font.
    font tags specific on the font size mean how big the text it would be when appear at the html document, font face means the pattern of the text such as times new romen or arial black.font color means the body of the text would be what color. we also can fill in rainbow colour bu using the right code on it.

    Name: Lee Seok Leng
    Student Id: 1000717819

    ReplyDelete
  79. This comment has been removed by the author.

    ReplyDelete
  80. table - it is used to insert a table
    tr - it is used in table for a row
    td - it is used in table for colum

    example

    table
    tr
    td 1 /td
    td 2 /td

    tr
    td 3 /td
    td 4 /td

    result
    1 2
    3 4

    name=tommy ongko
    id=1000818813

    June 1, 2009 12:23 AM

    Post a Comment



    Newer Post Older Post Home
    Subscribe to: Post Comments (Atom) Links to share with you
    MsSha's Sample of 'academic-purpose' blog
    Sample of article summary/review with references
    Bookmark of other interesting links on Internet Tech
    Today's Statistics
    Hi all!

    I've checked your responses on our class activities so far, and below is the statistics as per today, 30 May 2009:

    1. Tutorial 01 - 83 responses (55.33%)
    2. Tutorial 02 - 60 responses (40.00%)
    3. Tutorial 04 - 27 responses (18.00%)
    4. Facebook Group membership - 118 responses (78.67%)
    [But so far I only see 49 properly introduced via Discussion Board, as per instructed (32.67%)]
    5. Lab Week 02 on Index in HTML - yet to check
    6. Lab Week 04 on Table in HTML - 76 responses (50.67%)

    So far so good! I hope you take these activities seriously and get it done right after the lessons were taught in class (at least you won't procastinate and forget totally about it!).

    I wonder if I can create the chart here, hhmm...
    - MsSha
    30 May 2009 2:30PM

    Followers

    Blog Archive
    ▼ 2009 (4)
    ▼ May (4)
    Tutorial 04 - Browsers Basic
    Group Assignment (25%) - Due Date: 05 June 2009
    Tutorial 02 - Basic HTML using Notepad
    Tutorial 01 - Internet and the WWW
    About Me

    Ms-Sha
    View my complete profile

    ReplyDelete
  81. The font tag specifies the font face, font size, and font color of text. This type of tag is not an independent tag
    And the attributes for the font tag are;

    Attribute: class
    Value:classname
    Description: Specifies a classname for an element

    Attribute: dir
    Value: rtl, ltr
    Description: Specifies the text direction for the content in an element

    Attribute: id
    Value: id
    Description: Specifies a unique id for an element

    ReplyDelete
  82. Name of student: Rawen Nasraddin Qadir
    ID number: 1000921755.

    Q1: font
    The font tag specifies the font face, font size, and font color of text. This type of tag is not an independent tag
    And the attributes for the font tag are;

    Attribute: class
    Value: classname
    Description: Specifies a classname for an element

    Attribute: dir
    Value: rtl, ltr
    Description: Specifies the text direction for the content in an element

    Attribute: id
    Value: id
    Description: Specifies a unique id for an element

    ReplyDelete
  83. font is used to edit the format of text, it uses a dependent tag and it is used as below examples (N/B Otag=open tag, Ctag=close tag)

    Otag font face="Times New Roman" Ctag Example Otag /font Ctag

    Otag font face="Times New Roman" size="4" Ctag Example Otag /font Ctag

    Otag font face="Times New Roman" size="+3" color="#ff0000" Ctag Example Otag /font Ctag

    e.i. here "Example" is the text being edited
    the second line Example will be in Times New Roman and it's size will be 4

    ReplyDelete
  84. 12.frame

    Frames allow author to have multiple views in one window, which may be independent windows or sub windows. multiple views enable certain information to be visible, while other views are scrolled or replaced.For example, within the same window,one frame might display a static banner, a second a navigation menu, and a third a main document that can be scrolled through or replaced by navigating in the second frame.

    Chen Suet Yen
    1000613443

    ReplyDelete
  85. Question 1: Font
    Answer: "< font >< /font >" allow user to modify fonts for example size & color. Fonts is located in our windows/fonts and it is installed in by default. Other than that, font color can be change to any colors as long as that is a valid html code from the color charts.

    Name: Lee Weng Yew
    Student ID: 1000922673

    ReplyDelete
  86. Q4.
    TR indicates Table Row.
    HTML tables are constructed as a sequence of rows. Each row of table cells should be enclosed in a TR tag.
    TR contains TH or TD elements, which in turn contain the actual data of the table. In addition to the attributes common to most elements, TR takes presentational attributes for specifying the alignment of cells within the row and the row's background color.

    NAME:ANG WEE NEE
    ID: 1000819413

    ReplyDelete
  87. Q15 :div

    div is a block-level element . The div block visually isolates a section of a document on the page.

    NAME : VANITHA
    ID : 1000921556

    ReplyDelete
  88. the hr tag is an independent tag where it is use to create a horizontal line in a html page.The hr tag also supports the title,id,and style attributes.

    ReplyDelete