web design (final exam – study guide) page design... · web design (final exam – study guide)...

5
Web Design (Final Exam – Study Guide) Code to start creating a Web Page using HTML (contains information about the Web page, page title and page content. <html> <head> <title></title> </head> <body> </body> </html> Code to create a section header and align text to center. <h1 align="center"></h1> Code to create an unordered list using the CIRCLE type. <ul type="circle"> <li></li> <li></li> <li></li> </ul> Code to insert an inline graphic image to the center of page.

Upload: lekhuong

Post on 31-Jan-2018

215 views

Category:

Documents


1 download

TRANSCRIPT

Page 1: Web Design (Final Exam – Study Guide) Page Design... · Web Design (Final Exam – Study Guide) Code to start creating a Web Page using HTML (contains information about the Web

Web Design (Final Exam – Study Guide)

Code to start creating a Web Page using HTML (contains information about the Web page, page title and page content.

<html>

<head>

<title></title>

</head>

<body>

</body>

</html>

Code to create a section header and align text to center.

<h1 align="center"></h1>

Code to create an unordered list using the CIRCLE type.

<ul type="circle">

<li></li> <li></li>

<li></li> </ul>

Code to insert an inline graphic image to the center of page.

Page 2: Web Design (Final Exam – Study Guide) Page Design... · Web Design (Final Exam – Study Guide) Code to start creating a Web Page using HTML (contains information about the Web

<p align="center"><img src=""/></p>

Code to create a link.

<a href=""></a>

Code to change background to yellow, text to white, links to red and visited links to turquoise.

<body bgcolor="yellow" text="white" link="red" vlink="turquoise">

Code to create a table that contains 4 rows and 3 columns.

<table>

<tr>

<td></td>

<td></td>

<td></td>

</tr>

<tr>

<td></td>

<td></td>

<td></td>

</tr>

Page 3: Web Design (Final Exam – Study Guide) Page Design... · Web Design (Final Exam – Study Guide) Code to start creating a Web Page using HTML (contains information about the Web

<tr>

<td></td>

<td></td>

<td></td>

</tr>

<tr>

<td></td>

<td></td>

<td></td>

</tr>

</table>

Code to create a table caption on top of table.

<caption align="top"> </caption>

General syntax code to create a Frame layout.

<frameset rows="" cols="">

<frame src=""/>

<frame src=""/>

</frameset>

General syntax code to start an Online Form.

Page 4: Web Design (Final Exam – Study Guide) Page Design... · Web Design (Final Exam – Study Guide) Code to start creating a Web Page using HTML (contains information about the Web

<form>

</form>

General syntax to create a textarea in a form.

<textarea rows="" cols="">

</textarea>

Code to build a Frame Page that contains two columns which size are 25% and 75% respectively.

<frameset cols="25%,75%">

<frame src="">

<frame src="">

</frameset>

Language you use to create dynamic Web Pages (Web Pages whose content and layout can be modified.

JavaScript

Code to place JavaScript code directly into the HTML file.

<script type="text/javascript">

</script>

Page 5: Web Design (Final Exam – Study Guide) Page Design... · Web Design (Final Exam – Study Guide) Code to start creating a Web Page using HTML (contains information about the Web

General syntax for the method that sends output to the Web Page in Java Script.

document.write(“text”)