-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrosswordsol.html
More file actions
138 lines (129 loc) · 2.82 KB
/
crosswordsol.html
File metadata and controls
138 lines (129 loc) · 2.82 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
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>
<title>HTML CSS Crossword</title>
<link rel="stylesheet" href="style2.css">
<meta charset="UTF-8">
</head>
<body>
<img src="extra-pisa-css.png" alt="CSS riddle image" width="480" height="360" class="center">
<br>
<h1 id="h1">HTML CSS CROSSWORD</h1>
<br>
<table class="centertable">
<tr>
<td>1</td>
<td>2</td>
<td class="emptycell"></td>
<td>4</td>
<td>.</td>
<td>.</td>
<td>.</td>
</tr>
<tr>
<td>5</td>
<td></td>
<td>3</td>
<td>.</td>
<td>.</td>
<td>.</td>
<td>.</td>
</tr>
<tr>
<td class="emptycell"></td>
<td>.</td>
<td>.</td>
<td>.</td>
<td class="emptycell"></td>
<td class="emptycell"></td>
<td class="emptycell"></td>
</tr>
<tr>
<td class="emptycell"></td>
<td>.</td>
<td>.</td>
<td>6</td>
<td>.</td>
<td>.</td>
<td>.</td>
</tr>
</table>
<br>
<h2>Hints</h2>
<div>
<ul>
<li><strong>Down</strong>
<ol>
<li>Defines a cell in a table (2 letters)</li>
<li>Main part or brain of a HTML document (4 letters)</li>
<li>Adds the beauty to a HTML page (3 letters)</li>
<li>Defines the root of a HTML document (4 letters)</li>
</ol>
</li>
<li>
<strong>Across </strong>
<ol start="4">
<li>Defines information about the document (4 letters)</li>
<li>Defines the document type (7 letters)</li>
<li>Defines the relationship between a document and an external resouce link (4 letters)</li>
</ol>
</li>
<li>
<strong> Diagonal </strong> -
Don't want to make this too hard!
</li>
</ul>
</div>
<h2>Additional Info</h2>
<ul>
<li>
Black cells denote that no letter will appear in them.
</li>
<li>
Numbers correspond to the hint number.
</li>
</ul>
<h2>Solution</h2>
<br>
<table class="centertable">
<tr>
<td>T</td>
<td>B</td>
<td class="emptycell"></td>
<td>H</td>
<td>E</td>
<td>A</td>
<td>D</td>
</tr>
<tr>
<td>D</td>
<td>O</td>
<td>C</td>
<td>T</td>
<td>Y</td>
<td>P</td>
<td>E</td>
</tr>
<tr>
<td class="emptycell"></td>
<td>D</td>
<td>S</td>
<td>M</td>
<td class="emptycell"></td>
<td class="emptycell"></td>
<td class="emptycell"></td>
</tr>
<tr>
<td class="emptycell"></td>
<td>Y</td>
<td>S</td>
<td>L</td>
<td>I</td>
<td>N</td>
<td>K</td>
</tr>
</table>
<br>
<p><a href="https://github.com/ammuv/Scalable-Internet-Services-Project-0">GitHub Repo</a></p>
</body>
</html>