-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkitchen.html
62 lines (48 loc) · 1.43 KB
/
kitchen.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Kitchen Party</title>
<link rel="stylesheet" href="kitchen.css" type="text/css" media="screen" />
<style type="text/css" media="screen">
body {font: 18px/27px 'LobsterTwoRegular', Arial, sans-serif;}
h1 {font: 50px/58px 'LobsterTwoRegular', Arial, sans-serif;letter-spacing: 0;}
h2 {font: 18px/27px 'LobsterTwoItalic', Arial, sans-serif;}
h3 {font: 18px/27px 'LobsterTwoBold', Arial, sans-serif;}
</style>
</head>
<body>
<div id = "cup">
<img src="images/cup.png" alt="cup">
</div>
<div id = "cookie">
<img src="images/cookies.png" alt="cookie">
</div>
<div id ="summer">
<img src="images/mozilla.png" alt="mozilla">
<h3 >summer 2012</h3>
</div>
<div id = "plate">
<img src="images/plate.png" alt="plate">
</div>
<div id = "fork">
<img src="images/fork.png" alt="fork">
</div>
<div id = "napkin">
<h1>cookies and code</h1>
<h2>- a kitchen table party-</h2>
<dl class="style1">
<dt>who:</dt>
<dd>you (and bring a friend!)</dd>
<dt>what:</dt>
<dd>cookie eating at making</br> + make stuff w/ html+css</dd>
<dt>where:</dt>
<dd>jessica's kitchen</dd>
<dt>when:</dt>
<dd>Wednesday, 6pm</dd>
<dt>why:</dt>
<dd>webmaking = fun<br/>cookies = yum</dd>
</dl>
</div>
</body>
</html>