-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (91 loc) · 2.7 KB
/
index.html
File metadata and controls
92 lines (91 loc) · 2.7 KB
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hot Studio : GitHub</title>
<meta name="description" content="Hot Studio's GitHub page.">
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="HandheldFriendly" content="true" />
<style type="text/css">
body {
font-family:helvetica, arial, sans-serif;
}
#logo {
position:relative;
width:100%;
}
img {
position:absolute;
top:2%;
left:2%;
max-width:16%;
}
header, section, footer {
display:block;
/*
border-top:1px solid #b32d2c;
border-left:1px solid #b32d2c;
*/
padding:10px 0 0 10px;
}
header {
position:relative;
margin:2% 2% 0px 20%;
}
h1, h2 {
margin:0;
}
dl {
margin-bottom:50px;
overflow:hidden;
}
dt, dd {
float:left;
}
dt {
clear:left;
}
dd {
margin:0;
padding-left:1em;
margin-bottom:8px;
}
footer, section {
margin:50px 30px 0px 20%;
}
a {
color:#b32d2c;
}
#main_site {
margin-top:0.4em;
}
</style>
</head>
<body>
<img src="images/hot_logo.png" alt="Hot Studio" />
<header>
<h1>Hot Studio on GitHub</h1>
<p>Welcome!</p>
</header>
<section>
<h2>Projects</h2>
<dl>
<dt><a href="https://github.com/HotStudio/touchy">Touchy</a></dt>
<dd>A jQuery plugin for managing touch events</dd>
<dt><a href="https://github.com/HotStudio/mqorientationchange">MQOrientationChange</a></dt>
<dd>A jQuery plugin for normallizing orientationchange behavior on tablet / mobile devices.</dd>
</dl>
<h2>News</h2>
<dl>
<dt><a href="http://marakana.com/forums/html5/general/483.html">Touchy introductory video</a></dt>
<dd>Author Bill Fisher presents advice to developers on how to use this plugin and well-constructed events to get "native" feel on touch devices.</dd>
</dl>
<p>We'll be posting more of our projects soon.</p>
</section>
<footer>
<p id="main_site">Please check out the main <a href="http://hotstudio.com">Hot Studio</a> site for examples of our work.
<p>Thanks for visiting!</p>
</footer>
</body>
</html>