phone book

A

asanejad

I want a pge for lists of phones in my company but I can't design this page
please send for me source codr for phone book page in html, or with frontpage.
thanks a lot
 
R

Rob Giordano \(Crash\)

put them in a table with columns for;

last name, first name, department, phone number

something along those lines
 
D

Dan L

Here ya go:

<html>
<head>
<% ' FP_ASP -- ASP Automatically generated by a FrontPage Component. Do not
Edit. FP_CharSet = "windows-1252" FP_CodePage = 1252 %>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Phone Book</title>
<meta name="GENERATOR" content="Microsoft FrontPage 6.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
</head>
<body bgcolor="#FFFFFF">
<table width="100%" border="1" cellpadding="2" id="table1">
<thead>
<tr>
<th style="color: #FFFFFF" bgcolor="#000000">
<font face="Arial" style="font-size: 12px">
<span style="font-weight: 400"><b>Last Name</b></span></font></th>
<th style="color: #FFFFFF" bgcolor="#000000">
<font face="Arial" style="font-size: 12px">
<span style="font-weight: 400"><b>First Name</b></span></font></th>
<th style="color: #FFFFFF" bgcolor="#000000">
<font face="Arial" style="font-size: 12px">
<span style="font-weight: 400"><b>Department</b></span></font></th>
<th style="color: #FFFFFF" bgcolor="#000000">
<font face="Arial" style="font-size: 12px">
<span style="font-weight: 400"><b>Phone Number</b></span></font></th>
</tr>
</thead>
<tbody>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>

</tbody>
</table>
</body>
</html>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top