html
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
<!DOCTYPE html>
<html>
<head>
<title>DK PAGE</title>
</head>
<body bgcolor="#FFFFFF">
<div align="center">
<h1 align="center">· MY FIRST PAGE ·</h1>
<table>
<tr>
<td>
<svg width="80" height="80">
<circle cx="40" cy="40" r="30" fill="#999999"/>
<circle cx="28" cy="30" r="7" fill="#EEEEEE"/>
<circle cx="52" cy="30" r="7" fill="#EEEEEE"/>
</svg>
</td>
<td>
<svg width="80" height="80">
<circle cx="40" cy="40" r="30" fill="#999999"/>
<line x1="25" y1="30" x2="35" y2="30" stroke="#EEEEEE" stroke-width="4" fill="none"/>
<line x1="45" y1="30" x2="55" y2="30" stroke="#EEEEEE" stroke-width="4" fill="none"/>
</svg>
</td>
<td>
<svg class="smile" width="80" height="80">
<circle cx="40" cy="40" r="30" fill="#999999"/>
<polyline points="25,25 30,30 35,25 25,35 30,30 35,35" stroke="#EEEEEE" stroke-width="4" fill="none"/>
Enter to Rename, Shift+Enter to Preview
css
css
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
a {
cursor: pointer;
}
a:hover {
color: blue;
}
a:avtive {
color: red;
}
h1 {
color: rgb(245,245,245);
font-weight: 900;
text-shadow: 5px 5px 1px rgb(140,140,140);
padding: 10px;
border-width: 1px;
border-top-style: solid;
border-bottom-style: solid;
border-color: rgb(255,255,255)
}
h2 {
font-weight: 900;
text-shadow: 3px 3px 1px RGB(210 210 210);
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run