content management in html
CM: multiple page display in single screen is called content management
it is basically used for <iframe>
<html>
<body>
<a href="about1.html" target="f1"> about</a>
<a href="reg.html" target="f1">registation</a>
<a href="admission.html" target="f1">admission</a> <br>
<iframe height="600" width="800" name="f1">
</body>
</html>
Q. WHAT IS MEANT BY LINKED TRAVELLING ? (imp)
ans - target attribute
FORMS :-
Its is a communication between user to webpages.
1. static form :-pdf, words( downloads )
2. dynamic form :- online forms
All forms are created inside the form tag <form> ...</form>
FORM CONTROL :-
1. textbox
2.passwordbox
3.radio button
4. checkbox
5. textarea
6. dropdownlist
7. button
The text box works on only single line property
<html>
<body>
<form>
Enter your name
<br>
<input type="text">
<br>
Enter your password
<br>
<input type="password">
<br>
select your branch
<br>
ug-<input type="radio"><br>
select your branch
<input type="checkbox">
<br>
select your city
<select>
<option> Nagpur</option>
<option>pune</option>
<option>mumbai</option>
<option>goa</option>
</select>
<br>
<textarea>write</textarea>
<br>
<input type="button" value="submit">
<button> submit</button>
</form>
</body>
</html>
* TABLE:-
<html>
<body>
<table border="1" width=30%>
<tr>
<th>ROLL </th>
<th>NAME </th>
</tr>
<tr>
<td>101</td>
<td>ramesh</td>
</tr>
</table>
</body>
</html>
Day 2Task 1: create admission form in following pattern
name-tb
email-tb
mobile-tb
address-textarea
display horizontal line
select city-dropdown list
select branch-radio button cse ,it,etc
objective subject
checkbox 1sub1,2sub2,3sub3
create your password
submit button
day2 task2: BIODATA
about education internship contact<iframe> all in one frame
include all the tags studied till now total 5 pages included .
day2 task3: in table any 5 colleges
sno college comment website(should content links) dept
Comments
Post a Comment