-
Notifications
You must be signed in to change notification settings - Fork 0
/
page-audit-test.html
70 lines (55 loc) · 1.77 KB
/
page-audit-test.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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- meta-description-->
<!-- document-title -->
<title></title>
<!-- is-crawlable: ABRIR BUG de custom meta tags y de robots -->
<meta name="robots" content="noindex" />
<!-- hreflang -->
<link rel="alternate" hreflang="caca" href="https://example.com" />
<link rel="alternate" hreflang="caca2" href="https://example.com" />
<!-- canonical -->
<link rel="canonical" href="ht:/example.com" />
<link rel="canonical" href="http:/example2.com" />
<!-- font-size: MOBILE -->
<style>
html {
font-size: 11px;
}
</style>
</head>
<!-- Investigar https://web.dev/font-size/ -->
<body>
<!-- image-alt -->
<img src="https://images.unsplash.com/photo-1458512666532-73e960a25346" />
<!-- image-aspect-ratio -->
<img
alt="hola"
src="https://images.unsplash.com/photo-1458512666532-73e960a25346"
style="width: 50px; height: 100px"
/>
<img
alt="hola"
src="https://images.unsplash.com/photo-1458512666532-73e960a25346"
style="width: 51px; height: 100px"
/>
<!-- input-image-alt -->
<input type="image" />
<!-- color-contrast -->
<span style="color: #dddddd">color-contrast</span>
<!-- crawlable-anchors -->
<a>crawlable-anchors</a>
<!-- link-text -->
<a href="https://www.google.com">Click here</a>
<!-- tap-targets: MOBILE -->
<button onclick="alert('hola')" style="padding: 0; width: 1px; height: 1px">
a
</button>
<!-- font-size: MOBILE -->
<span style="font-size: 2px;">texto pequeñito</span>
</body>
</html>