-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (70 loc) · 2.3 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!--meta name="viewport" content="width=device-width,initial-scale=1"-->
<title>Said Yeti</title>
<style>
html, body {
margin: 0;
}
body {
font-family: "Slabo 27px", sans-serif;
font-size: 18px;
}
img {
max-width: 100%;
}
.main_content {
padding: 10px 20px 40px;
max-width: 750px;
margin: 0 auto;
}
.lead_image {
width: 750px;
}
.screenshot {
padding: 10px;
}
.email_contact {
display: block;
}
.ld35_preview {
font-style: italic;
}
</style>
</head>
<body>
<div class="main_content">
<h1>Said Yeti</h1>
<p class="ld35_preview">Check out a preview of our latest game <a href="http://ludumdare.com/compo/ludum-dare-35/?action=preview&uid=64674">here</a>!</p>
<h2>Marty McPaper: Epic Delivery Service</h2>
<img class="lead_image" src="img/martymcpapertitlecropped.png" alt="Marty McPaper: Epic Delivery Service"/>
<p>
You are Marty McPaper, a delivery boy for the Tub County Herald. You're headed down Obstructive Lane, delivering papers and dodging numerous hindrances throughout Tub County's most affluent residential area. Hurry - they are not the most forgiving neighbors. And watch out - don't break their windows!
</p>
<a href="http://martymcpaper.saidyeti.com/">Playable Alpha Demo</a>
<h3>Credits</h3>
<ul>
<li>Hannah Fitzgerald—Art</li>
<li>Ali Sims—Programming</li>
<li>Ben Wiley—Programming and Music</li>
</ul>
<h3>Screenshots</h3>
<a class="screenshot" href="img/papershot1.png"><img src="img/papershot1.png" width="350"/></a>
<a class="screenshot" href="img/papershot2.png"><img src="img/papershot2.png" width="350"/></a>
<a class="screenshot" href="img/letsdothis.png"><img src="img/letsdothis.png" width="350"/></a>
<h2>Email Us!</h2>
<a class="email_contact" href="mailto:[email protected]">Hannah Fitzgerald (Designer)</a>
<a class="email_contact" href="mailto:[email protected]">Ben Wiley (Programmer)</a>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js"></script>
<script>
WebFont.load({
google: {
families: ['Slabo 27px']
}
});
</script>
</body>
</html>