-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (60 loc) · 2.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<style media="screen">
*{
text-align: center;
font-size: 1.1em;
font-family: comic sans ms;
}
legend{
text-transform: uppercase;
}
</style>
<title></title>
</head>
<body>
<fieldset><!--CALCULATOR-->
<legend>calculator</legend>
<form action="calculator.php" method="POST">
<select name="option">
<option value="add">Add</option>
<option value="subtract">Subtract</option>
<option value="multiply">Multiply</option>
<option value="devide">Devide</option>
<option value="factorial">Factorial</option>
</select>
<br>
<p>You can use these 2 inputs to do Addition, Subtraction, Multiplication & Devision. For doing Reversing or calculating the Factorial you can fill in either of these 2 fields but only 1</p>
<input type="number" name="firstfield" value="0">
<input type="number" name="secondfield" value="0">
<input type="submit">
</fieldset>
<fieldset><!--REGEX-->
<legend>regex check</legend>
</form>
<form action="check.php" method="post">
<p>If you wish to check something than enter something here you wish to check</p>
<select name="option">
<option value="checkalfa">Check if alfabetical</option>
<option value="checknum">Check if numeric</option>
<option value="checkpostcode">Check if valid postcode</option>
<option value="checkphone">Check if valid phone number</option>
<option value="checkgender">Check if gender is valid</option>
<option value="checkemail">Check if email is valid</option>
<option value="checkadres">Check if adres is valid</option>
</select>
<input type="text" name="check">
<input type="submit" name="submit"><br><br>
</form>
</fieldset>
<fieldset><!--FIBONACCI-->
<legend>Fibonacci</legend>
<form action="fibonacci.php" method="post">
<input type="number" name="fibonacci">
<input type="submit">
</form>
</fieldset>
</body>
</html>