-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmobile.html
138 lines (105 loc) · 5.06 KB
/
mobile.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<!-- META -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
<link rel="author" type="text/plain" href="humans.txt" />
<title>Know your viral enemies!</title>
<!-- CSS -->
<link rel="stylesheet" media="all" href="static/css/screen-mobile.css" />
<!-- ICONS -->
<link rel="icon" type="image/png" href="static/images/icons/favicon.ico" />
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div id="page">
<header role="banner">
<h1>Know your viral enemies!</h1>
</header> <!-- // role:banner -->
<nav role="navigation">
<ul>
<li>☞ <a href="">Why are viruses dangerous?</a></li>
<li>☞ <a href="">How can I stay healthy?</a></li>
<li>☞ <a href="">Are all viruses and bacteria bad?</a></li>
</ul>
</nav> <!-- // role:navigation -->
<div class="intro">
<p>A virus is a small parasite that can infect living organisms. That’s why we sometimes suffer from diseases like a cold or flu. Viruses are mostly bad things and you should always eat enough fruit to avoid them attacking you. But while their doings are quite bad, the viruses themselves are funny creatures:</p>
</div> <!-- // class:intro -->
<ul class="media_listing">
<li>
<a href="">
<figure>
<img src="static/images/viruses/virus.png" width="168" height="173" alt="">
<figcaption>Virus (structure)</figcaption>
</figure>
</a>
</li>
<li>
<a href="">
<figure>
<img src="static/images/viruses/mumps.png" width="168" height="173" alt="">
<figcaption>Mumps virus</figcaption>
</figure>
</a>
</li>
<li>
<a href="">
<figure>
<img src="static/images/viruses/paramyxo.png" width="168" height="173" alt="">
<figcaption>Paramyxovirus</figcaption>
</figure>
</a>
</li>
<li>
<a href="">
<figure>
<img src="static/images/viruses/clostridium.png" width="168" height="173" alt="">
<figcaption>Clostridium tetani</figcaption>
</figure>
</a>
</li>
<li>
<a href="">
<figure>
<img src="static/images/viruses/influenza.png" width="168" height="173" alt="">
<figcaption>Influenza</figcaption>
</figure>
</a>
</li>
<li>
<a href="">
<figure>
<img src="static/images/viruses/papilloma.png" width="168" height="173" alt="">
<figcaption>Papillomaviridae</figcaption>
</figure>
</a>
</li>
<li>
<a href="">
<figure>
<img src="static/images/viruses/rubella.png" width="168" height="173" alt="">
<figcaption>Rubella virus</figcaption>
</figure>
</a>
</li>
<li>
<a href="">
<figure>
<img src="static/images/viruses/bacillus.png" width="168" height="173" alt="">
<figcaption>Klebs-Löffler bacillus</figcaption>
</figure>
</a>
</li>
</ul> <!-- // class:media_listing -->
<footer role="contentinfo">
<p>
A mobile website tutorial by <a href="http://twitter.com/#!/gw">@gw</a> — All illustrations © <a href="http://christowski.de/">Christoph Rauscher</a>
</p>
</footer> <!-- // role:contentinfo -->
</div><!-- // id:page -->
</body>
</html>