-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.html
37 lines (34 loc) · 1.04 KB
/
template.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!-- BASIC TEMPLATE -->
<!DOCTYPE html>
<html>
<head>
<title>PHP Template Sample</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<div>
<h2>Welcome, [username]</h2>
<table width="50%" align="center" cellpadding="3" border="1">
<caption>V Card</caption>
<tbody>
<tr>
<td>Name: </td>
<td>[firstname] [lastname]</td>
</tr>
<tr>
<td>Address: </td>
<td>[address]</td>
</tr>
<tr>
<td>Phone: </td>
<td>[phone]</td>
</tr>
<tr>
<td>Location: </td>
<td>[location]</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>