forked from pypower-codes/Emotion-Detection
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathface.html
More file actions
45 lines (36 loc) · 684 Bytes
/
face.html
File metadata and controls
45 lines (36 loc) · 684 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
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<title>
basefont face Attribute
</title>
<basefont color="red"
size="9"
face="courier, serif">
<style>
body {
text-align: center;
}
.gfg {
font-size: 40px;
font-weight: bold;
color: green;
}
.geeks {
font-size: 25px;
font-weight: bold;
}
</style>
</head>
<body>
<div class="gfg">
Face X
</div>
<div class="geeks">
HTML basefont face Attribute
</div>
<p>
A computer science portal for geeks
</p>
</body>
</html>