-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (60 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<title>IPM Web Mobile Examples - 17/18</title>
<link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="css/ipm.css" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div id="wrapper">
<header>
<h1>IPM Web Mobile</h1>
</header>
<nav>
<h2>Optimizaciones navegador móvil</h2>
<ul>
<li>
Viewport
<a href="blog-viewport-1.html">(sin meta)</a>
<a href="blog-viewport-2.html">(meta con zoom)</a>
<a href="blog-viewport-3.html">(meta sin zoom)</a>
</li>
<li>
<a href="sprites.html">CSS sprites</a>
</li>
<li>
<a href="form.html">Forms</a>
</li>
<li>
<a href="geo.html">Geolocalización</a>
</li>
</ul>
<h2>Responsive web design</h2>
<ul>
<li><a href="font-size-rwd.html">Tipografías responsive</a></li>
<li>
Responsive blog
<a href="blog-fluid.html">(fluid layout)</a>
<a href="blog-rwd.html">(mobile + tablet)</a>
<a href="blog-rwd-all.html">(mobile + tablet + desktop)</a>
</li>
<li>
<a href="responsive-table.html">Responsive tables</a>
</li>
<li>
Bootstrap blog
<a href="blog-clean.html">(base)</a>
<a href="blog-bootstrap-1.html">(scripts + stylesheets)</a>
<a href="blog-bootstrap-2.html">(clases)</a>
<a href="blog-bootstrap-3.html">(customización)</a>
</li>
</ul>
</nav>
<footer>
Noelia Barreira Rodríguez
</footer>
</div>
</body>
</html>