-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmockup.php
More file actions
69 lines (65 loc) · 1.27 KB
/
mockup.php
File metadata and controls
69 lines (65 loc) · 1.27 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
<!DOCTYPE html>
<html>
<head>
<title>How this should look</title>
</head>
<body>
<header>
<h1>Spectroscope - CSS Analyser</h1>
<style type="text/css">
body {
color: #936198;
}
</style>
</header>
<main>
<h2>URL: </h2>
<section>
<h2>Overview</h2>
</section>
<section>
<h2>CSS Sources</h2>
<table>
<thead>
<tr>
<td></td>
<td>Internal Files</td>
<td>External Files</td>
<td>Embedded</td>
<td>Inline</td>
</tr>
</thead>
<tbody>
<tr>
<td>instances</td>
<td>2</td>
<td>1</td>
<td>3</td>
<td>27</td>
</tr>
<tr>
<td>declarations</td>
<td>7218</td>
<td>321</td>
<td>9</td>
<td>119</td>
</tr> </tbody>
</table>
<h3>Files</h3>
<h4>Internal</h4>
<ul>
<li><a href="#">http://www.cchobby.dk/media/css/25c45d3535ee33e69509d1d3db69e260.css?v=71</a></li>
<li><a href="#">http://www.cchobby.dk/media/css/59a959a853a50862aaca314d3781bad2.css?v=71</a></li>
</ul>
<h4>External</h4>
<ul>
<li><a href="#">http://fonts.googleapis.com/css?family=Raleway:300,400,500,700,600</a></li>
</ul>
<h3>Embedded</h3>
<p>3 instances having 4 rules with 9 declarations</p>
<h3>Inline</h3>
<p>27 instances having 95 rules with 119 declarations</p>
</section>
</main>
</body>
</html>