wip unit 1 program
wip unit 1 program
<html>
<head>
</head>
<body>
<form>
My products:
customer name:
phone number:
Address:
</form>
</body>
</html>
OUTPUT:
<html>
<head></head>
<body>
<div id="header"></div>
<div class="left"></div>
<div class="stuff">
<br><br>
<h1>Resume</h1>
<h2>Emily</h2>
<hr />
<br>
<p class="head">Interests</p>
<ul>
<li>Drawing</li>
<li>Photography</li>
<li>Design</li>
<li>Programming</li>
<li>Computer Science</li>
</ul>
<p class="head">Skills</p>
<ul>
</ul>
<p class="head">Education</p>
<ul>
<a href="http://www.wiltonhighschool.org/pages/Wilton_High_School">
</a>
<!--Link-->
<a href="https://www.silvermineart.org/">
</a>
<li>Codeacademy</li>
</ul>
<p class="head">Experience</p>
<ul>
<li>Babysitter</li>
</ul>
<p class="head">Extracurriculars</p>
<ul>
<li>Recycling Club</li>
<li>Gardening Club</li>
<li>Book Club</li>
</ul>
</div>
<div class="right"></div>
<div id="footer">
<h2 id="name">Emily</h2></div>
</body>
</html>
3)feeback form:
<html>
<head>
</head>
<body>
<br>
<textarea name="comments"></textarea><br><br>
</form>
</body>
</html>
123.css:
form {
width: 400px;
background-color: lightblue;
text-align: center;
padding: 20px;
}
input, textarea {
padding: 12px;
input[type=submit] {
background-color: green;
color: white;
input[type=reset] {
background-color: red;
color: white;
Output:
4) Write and discuss an HTML script which creates a web page which should display some
of the egg. Colleges in Tamil Nadu in a tabular form with name, address and URL of the web
site of the college. A candidate should select the required department which is listed as
items from a form. Candidate’s selection should be consolidated and displayed finally.
<html>
<head>
<title> colleges in tamilnadu</title>
<center><h4>colleges in tamilnadu</h4>
</head>
<body>
<form>
<table width="70%" border=3>
<tr>
<th>name</th>
<th>address</th>
<th>url</th>
</tr>
<tr>
<td>krce</td>
<td>samyapuram,trichy</td>
<td>http.krce.com</td>
</tr>
<tr>
<td>krct</td>
<td>samyapuram,trichy</td>
<td>http.krce.com</td>
</tr>
<tr>
<td>psg</td>
<td>coimbatore</td>
<td>https.psg.com</td>
</tr>
<tr>
<td>GCE</td>
<td>srirangam,trichy</td>
<td>http.gce.com</td>
</tr>
</table><br>
<b> select department</b>
<select>
<option>cse</option>
<option>ece</option>
<option>eee</option>
<option>IT</option>
</select><br>
<tr>
<th>S.NAME</th>
<th>MARKS</th>
<th>RESULT</th>
</tr>
<tr>
<td >Dinesh</td>
<td>100</td>
<td >pass</td>
</tr>
<tr>
<td >Bala</td>
<td>99</td>
<td >pass</td>
</tr>
<tr>
<td >Gopi</td>
<td>98</td>
<td>pass</td>
</tr>
</table>
</table>
</form>
</center>
</body>
</html>
Ouput: