Html Stands For Hypertext Markup Language Information Technology Essay

Create a form as display below. The form should be able to have the input tag as together with the option to be chosen from and radio buttons as an option as well. Finally the email should be able to send an email to any respective mail address

Design the following diagram with the needed element include in it. It should consist frames and shadow as per display.

Introduction

Before I start my assignment which is based on the subject that has been listed in the assignment, I would give a brief introduction about the subject that I learn know. The subject that I want to introduce is web programming. Many developers and programmers face the dilemma of how to start a web development project. While many developers can create large desktop applications easily, they are not proficient in creating web applications. Most of the developers have some level of familiarity with HTML and the deployment of static pages on the web server.

HTML stands for hypertext markup language, and it is the language in which, until recently, virtually all web pages were written. Now, don’t break out in hives when u hear the word “languange”.You don’t need complex logical or mathematical formulas to work with HTML, and you don’t need to think like a programmer to use it. Computer programming must think through the tasks that they want their programs to perform, and then develop an elaborate.

Hypertext refers to the way in which web page HTML documents are linked together. When you click a link in a web page, you are using hypertext. It is the system of linking documents that has made the World Wide Web the global phenomenon it has become.

The first step toward understanding and working with HTML is learning the basic term that describes most of the function of this language. You will come across these terms repeatedly as you use HTML and if you understand them, you will have progressed a long way towards comprehending HTML.

The question 1 is about HTML form is section of a document containing normal content, markup, special elements called controls as checkboxes, radio buttons and menus. Also labels on those controls. Users generally “complete” a form by modifying its controls like entering text and selecting menu items. Then it will before submitting the form to an agent for processing. Example like to a Web server and to a mail server.

The question 2 is about the HTML Tables with the <table> tag. A table is divided into rows as <tr> tag. The each row is divided into data cells are with the <td> tag. The <td> stands for “table data” and holds the content of a data cell. A <td> tag can contain text, links, images, lists, forms and other tables. If do not specify a border attribute, the table will be displayed without borders. Sometimes this can be useful, but most of the time the borders to show. The HTML Frames can divide the screen into separate windows. The each of these windows can contain into an HTML document. A file can that specifies how to screen it is divided into frames. The frames also can call a frameset. If want to make a homepage that will uses in frames should it make an HTML document with the frameset. Also it makes the normal HTML documents that should be loaded into each of these frames. When the frameset page is loaded and it also browser automatically loads each of the pages associated with the frames.

Read also  Applications For Integrated Circuits Information Technology Essay

Listen

Read phonetically

Define question 1

Next, in my first question I get know how to create a form as display below. The form should be able to have the input tag as together with the option to be chosen from and radio buttons as an option as well. Finally the email should be able to send an email to any respective mail address so from this question i should learn more about the html system to create this answer and display it out. A form can contain input elements like text fields, checkboxes, radio buttons, submit buttons and more. A form can also contain select menus, textarea, fieldset, legend, and label elements. Forms are used to pass data to a server. Also in question 1 used HTML Select as <select> is to create a select list from drop- down the list. In HTML Select have option as <option>. The <option> is inside select element into available option in the list. The HTML Anchor as <a>, it can use in two ways like to create a link to another document, by using <a href> attribute and create a bookmark inside document, by using the name attribute. The href of name attribute must be present in the <a>. The <a> is usually referred to as a link or hyperlink. The most important attribute <a> is the <a href> attribute, which indicates the link’s destination. The default, link appear as in all browsers as unvisited link is underlined and blue, visited link is underlined and purple and active link is underlined and red.

Figure 1:Output question 1

Answer question 1

<html>

<head>

<title>

</title>

</head>

<body>

<form action=”mailto:[email protected]“>

First Name: <input name=”First Name” value=”” size=”10″><br>

Last Name: <input name=”Last Name” value=”” size=”10″><br>

</form>

<select>

<option>DIT</DIT>

<option selected>CICT</CICT>

</select><br>

<br>

<br>

<input type=”radio” name=”option”> male

<input type=”radio” name=”option”> female

<br>

<br>

<a href=”http:www.yahoo.com/”>

MyEmail</a>

</form>

</body>

</html>

From the question 1, i get know about how to create the first and last name text box, option box, radio box and email. From this answer I would like to explain about the codes. From the first line of the answer I add first name <input name, value and size so it will show the text box of the first name that we can edit our name into that text box. In additional, the size it mean to ensure how big and small of the object of something. Following that, the last name also same like the previous code that first name. Furthermore, on the codes also I put <br> that means can add space between first and last name of the text box.

Read also  Fault Diagnosis And Troubleshooting Information Technology Essay

Next, in the question that also about the option button so in my answer I wrote <select><option>DIT</DIT><option selected>CICT</CICT</select><br> that mean can choose what course from option box. Than following about the radio button codes, radio buttons is creates a circular button one our web page that can be select by the user at one time. In my radio button I create male and female to choose it and when make this radio button i get some error that can choose both object also so I did some correction to make sure choose one object. Lastly also create email codes to send that respective to easy to asses went click the email in URL form.

Define question 2

Then, in my second question that asks how to Design the following diagram with the needed element include in it. It should consist frames and shadow as per display so went i see the diagram i get know that in html also can make table and diagram by the codes. Following that should do some research to create this diagram and make it display in web. A simple HTML table consists of the table element and one or more < tr>,< th> and <td> elements. The <tr> element stands a table row. The <th> element stands a table header. The< td> element stands table cell. A more complex HTML table may also include caption, col, colgroup, thead, tfoot, and tbody elements. The text in a <th> element is bold and centered. The text in a td element is regular and left-aligned.

The HTML frames is authors to present documents in multiple views. It can may be independent windows or sub windows. The multiple views offer designers a way to keep certain information visible and while other views are scrolled or replaced. The example for HTML frames is within the same window. The one frame might display and static banner. The second is a navigation menu. The third is the main document that can be scrolled through or replaced by navigating in the second frame.

Figure 2:Output of question 2

Answer question 2

<table border=”10″ cellpadding=”10″ cellspacing=”10″ width=”70%”>

<tr>

<th rowspan=”50″> OLYMPIA COLLEGE CENTRES </th>

<td>KUALA LUMPUR</td>

<tr>

<td>PETALING JAYA</td>

</tr>

<tr>

<td>PENANG</td>

</tr>

<tr>

<td>JOHOR BHARU</td>

</tr>

<tr>

<td>KUANTAN</td>

</tr>

<tr>

<td>IPOH</td>

</table>

In my second question of assignment that ask how design the following diagram with the needed element include in it and it and should consist frames and shadow as per diagram. Than on the diagram that show Olympia college centres in on big rectangle box and the side with small rectangle boxes of the campus such as Kuala lumpur, Penang, Kuantan and other, following with the shadow boarder.Next,the codes I create for this diagram is start with <table boarder=”10″cellpadding=”10″cellspacing width=>.Cell spacing is the pixel width between the individual of the data cell in the table. The thickness of the lines making in the table grid and the default is zero, even if the boarder is set at zero, the cell spacing lines will be invisibles.

Than, cellpadding is the pixal space between the cell of the contents and the cell boarder. The defaults of these properties also zero, furthermore, this feature is not used often, but sometimes comes in hardly when you have your boarders bit for make easy viewing. In additional,cellpadding is invisible, even with the boarder properties turned on. The width is make sure how size of the width that we can adjust the diagram.Moreover,the second codes line i create is <th row span=”50″>Olympia college centres </th>,row span is set how many rows a cell span can get a little confusing because its requires our to think through how the cell affect the rows after the row it start in and its particular useful in this situation to add boarders to the table during the design process, even if the table wont early use boarder.

Read also  Ethics And Implications Of Computer Virus Information Technology Essay

HTML frames allow authors to show the documents in a variety of views, which may be independent windows or sub windows. Some views offer designers a way to keep certain information visible, while others display a scrolled or replaced. For example, in the same window, one frame might display a static banner, a second a navigation menu, and the third the main document that can be scrolled through or replaced by navigating in the second frame. One other hand In HTML, frames allow you to present some of the HTML document in the same window. For example, you may have left frame for navigation and the right to the main content. In additional

frame all by making the networking sites and defining each frame of the page. Site is in fact the network does not contain any content just a reference for each frame. HTML frames are used to determine each frame in the frameset, all tagged frames with tags nested frameset.

moreover, if you want to create a web page with 2 frames, you will need to create three files one file for each frame, and a file to determine how they fit together.Finaly,the following codes will be the campus central.

Conclusion

After completing my assignment, I have finally come into a conclusion in the end. I now know what is the purpose of a html and the role that a web page cheeks used in web programming. In HTML I get more knowledge about that, so I also understand the creations of html when used for the web page.Furtermore, in this assignment I know the method of html what is the radio button, text box, email by url.

On the other hand, my second question is I study and understand about the how to display the table and from this question i search some web to helpful my question to create this diagram to show the output of the diagram in web page other than that my lecture also help and guide me in this assignment. In additional get more knowledge idea to create this assignment. As a result we need to upgrade the html time to time to make sure our work will be done successful without any problem.Finally, in this assignment makes me clearness more detail about html and web.

Appendix

Order Now

Order Now

Type of Paper
Subject
Deadline
Number of Pages
(275 words)