-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvcard.html
34 lines (25 loc) · 995 Bytes
/
vcard.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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<meta name="author" content="Mark Boulton Design" />
<meta name="description" content="UCL Homepage" />
<meta name="viewport" content="width=device-width, minimum-scale=1.0" />
<title>UCL Design Language</title>
<link href="./css/screen.css" media="screen, projection" rel="stylesheet" type="text/css" />
<script src="./js/jquery.js"></script>
<script src="./js/ucl.js"></script>
<!--[if IE]><link href="./css/ie.css" rel="stylesheet" /><![endif]-->
<!--[if lt IE 8]><link href="./css/ie-old.css" rel="stylesheet" /><![endif]-->
<!--[if lte IE 8]><script src="./js/html5.js"></script><![endif]-->
</head>
<body id="vcard-view"><ul class="vcard box">
<li class="fn">First name Surname</li>
<li class="street-address">123 Street Road</li>
<li class="locality">City</li>
<li class="state">County/State</li>
<li class="zip">UC12 3LU</li>
<li class="email"><a href="#">[email protected]</a></li>
</ul>
</body>
</html>