-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicroformat.html
More file actions
41 lines (39 loc) · 881 Bytes
/
Microformat.html
File metadata and controls
41 lines (39 loc) · 881 Bytes
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
38
39
40
41
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Microformat</title>
<style>
#no {
width: 200px;
height: 200px;
border: 2px solid black;
float: left;
}
#yes {
width: 250px;
border: 3px solid black;
height: 200px;
margin-left: 300px;
}
</style>
</head>
<body>
<div id="no">
<strong>Piyush Agarwal</strong><br>
Student at University of NC<br>
100 Round St<br>
Raleigh, NC 45678<br>
</div>
<div id="yes" class="vcard">
<strong class="fn">Piyush Agarwal</strong><br>
<span class="title">Student</span> at <span class="org"> University of North Carolina</span><br>
<span class="adr">
<span class="street-address">100 Round St</span><br>
<span class="locality">Raleigh</span>,
<span class="region">NC</span>
<span class="postal-code">45678</span>
</span>
</div>
</body>
</html>