Sunday, 19 November 2017

WT-Slip9


9)Write HTML code to design a website of facebook. Design three pages Home, Profile and Find Friends Request page which are linked to each other. Design First two pages of website (Home &Profile ) as shown below. And Third page (Find Friends Request) contains information as Image ,Name of Sender ,And two buttons Confirm and Delete.


frames.html
<html>
<head>
<title> Frame Example </title>
</head>
<frameset rows="30%,*">
<frame src="header.html" name="frame1">
<frameset cols="30%,*">
<frame src="links.html" name="frame2">
<frame src="pune.html" name="frame3">
</frameset>
</frameset>
</html>

header.html
<html>
<head>
<title> Frame Example </title>
</head>
<body>
<h1 align="center"><font color="red">Welcome to Ivan Bayross</FONT><p align="right">Logout</p></H1>
</body>
</html>


links.html
<html>
<head><title> Frame Example </title></head>
<body>
<a href="pune.html" target="frame3">Home</A></li><br><br><br><br>
<a href="b.html" target="_BLANK">Profile</A></li><br>
</body>
</html>

pune.html
<body>
<p>Raj shared this link </p><br>
<img src="rose.jpg" alt="" width="32" height="32" /><br><br>
<input type="submit" value="like"> <input type="submit" value="share"> <input type="submit" value="comment">
</body>
</html>

b.html
<html>
<body>
<table border="0" height="60%" width="60%">
<tr><td>Profile Page <td><a href=""><p align="right">Home</p></a></td></tr>
<tr><td><img src="rose.jpg" alt="" width="32" height="32" />Ivan Bayross </td></tr>
<tr><td><input type="submit" value="comment/Message"> Post <td></tr>
<tr><td>Timeline </td>  <td>   About  </td>        <td>     Friends </td></tr>
</table>
</body>
</html>