-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 1.52 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
<!DOCTYPE html>
<html lang = "en">
<head>
<meta http-equiv="Content-Type" content = "text/html; charset-utf-8" />
<title> A list of quotations</title>
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1> A single Page of Quotations</h1>
<h2> ... Hope you enjoy them ....</h2>
<table>
<thead>
<tr>
<th colspan="2">List of Quotations</th>
</tr>
<tr>
<th >Quotation Number</th>
<th >Customer Namer</th>
</tr>
</thead>
<tbody>
<tr>
<td>12345</td>
<td>Müller KG</td>
</tr>
</tbody>
<caption style="caption-side: bottom" > List of Quotation</caption>
</table>
<ul>
<li>"The answer to the ultimate question is 42" -- Douglas Adams</li>
<li>"Es war die Nachtigall und nicht die Lerche " -- Shakespeare</li>
<li>"Talking is cheap. Show me the code! " -- Linus Torvaldss
<li>"Nachts sind alle Katzen grau" -- unbekannt</li>
<li>"This is the first new quote I added to my master branch.</li>
<li>"This is the second new quote in the master branch.</li>
<li>"Wer Visionen hat, sollte zum Arzt gehen" --- Helmut Schmidt (rebase 1)</li>
<li>"Nachts wenn alles schläft, solltest du bei mir sein" -- Roland Kaiser (rebase 2)</li>
<li>"Live long and prosper" -- Mr. Spock</li>
<li>"Love your enemies, they tell you your weakness" -- Benjamin Franklin
<li>"It isn't over, till it is over " -- Yogi Bearr
</ul>
</body>
</html>