-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 1009 Bytes
/
index.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
38
39
40
41
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Pure CSS Images</title>
<link rel="stylesheet" href="styles.css" type="text/css">
</head>
<body>
<!-- May 7, 2018 followed: https://medium.com/coding-artist/a-beginners-guide-to-pure-css-images-ef9a5d069dd2-->
<div class="box">
<div id="head">
<div id="headCopy">
<!-- Head copy is used for layering the ears behind the face -->
</div>
<div id="leftEar">
<div class="innerEar">
</div>
</div>
<div id="rightEar">
<div class="innerEar">
</div>
</div>
<div id="leftEye">
<div class="pupil">
</div>
</div>
<div id="rightEye">
<div class="pupil">
</div>
</div>
<div id="nose">
</div>
<div id="leftHair">
</div>
<div id="rightHair">
</div>
</div>
<p>May 5, 2018</p>
</div>
</body>
</html>