-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpalindrome.html
executable file
·69 lines (61 loc) · 2.94 KB
/
palindrome.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>Diego Casas Arcega - COMP519</title>
<meta name="description" content="My assignment" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body>
<div class="container text-center">
<h2>Perl</h2>
<div class="main-menu">
<ul class="list-inline list-unstyled">
<li><a href="converter.html">Currency Converter</a></li>
<li><a href="quiz.html">Quiz</a></li>
<li><a href="palindrome.html">Palindrome</a></li>
<li><a href="rateme.html">Rate me!</a></li>
</ul>
</div>
<div class="container col-lg-5 text-left col-md-offset-3">
<h1>Palindrome checker</h1>
<p>Write down the thing you want to check whether it is a palindrome</p>
<form action="http://cgi.csc.liv.ac.uk/cgi-bin/cgiwrap/u3dcda/palindrome.cgi" method="GET" class="mBottom40">
<div class="input-group col-lg-12" id="inputs">
<input type="text" name="userinput0" class="form-control input-md" required>
</div>
<div class="input-group">
<span class="input-group-btn">
<button class="btn btn-primary btn-block" type="submit">Analyse!</button>
<button class="btn btn-link btn-block" id="addBtn" type="button">+ Analyse more itens</button>
</span>
</div>
</form>
<div class="text-center">
<hr />
<ul class="list-inline list-unstyled">
<li><a href="http://www.liv.ac.uk/" onclick="target='_blank';">University of Liverpool</a>
</li>
<li><a href="http://cgi.csc.liv.ac.uk/~martin/teaching/comp519/" onclick="target='_blank';">COMP519</a>
</li>
</ul>
<p>
<img src="images/logo.png" alt="University of Liverpool logo" />
</p>
<p>
<a href="http://validator.w3.org/check?uri=referer">
<img src="http://www.w3.org/Icons/valid-xhtml10" alt="Valid XHTML 1.0 Strict" height="31" width="88" />
</a>
</p>
<p id="fortune-text" class="col-lg-12 img-rounded bg-primary"></p>
<p id="last-modified"></p>
</div>
</div>
</div>
<script type="text/javascript" src="js/fortune-generator.js"></script>
<script type="text/javascript" src="js/palindrome.js"></script>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>