-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (76 loc) · 3.42 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="reg-exp/resources/RegExp.css">
</head>
<body>
<div class="content-wrapper">
<h1 class="page-title page-header page-header__home">RegEx Game</h1>
<table class="list-of-questions">
<tr class="list-of-questions__row">
<td class="list-of-questions__item"><strong>Capital Words</strong></td>
<td class="list-of-questions__item">Validate whether a given string starts with a capital letter</td>
<td class="list-of-questions__item">
<a href="reg-exp/capital_words">
<div class="button">Solve</div>
</a>
</td>
</tr>
<tr class="list-of-questions__row">
<td class="list-of-questions__item"><strong>Does a Word Contain One 'a'</strong></td>
<td class="list-of-questions__item">Validate whether the given word contains one and only one letter 'a'.</td>
<td class="list-of-questions__item">
<a href="reg-exp/one_a">
<div class="button">Solve</div>
</a>
</td>
</tr>
<tr class="list-of-questions__row">
<td class="list-of-questions__item"><strong>Find Prices</strong></td>
<td class="list-of-questions__item">Determine whether the given string is a valid price</td>
<td class="list-of-questions__item">
<a href="reg-exp/find_prices">
<div class="button">Solve</div>
</a>
</td>
</tr>
<tr class="list-of-questions__row">
<td class="list-of-questions__item"><strong>Username Validation</strong></td>
<td class="list-of-questions__item">Determine whether a given username is valid according to the following restrictions: A username has to be between 6 and 10 characters and can only contain alphanumeric characters and '_'!</td>
<td class="list-of-questions__item">
<a href="reg-exp/username_validation">
<div class="button">Solve</div>
</a>
</td>
</tr>
<tr class="list-of-questions__row">
<td class="list-of-questions__item"><strong>Hex Color Code</strong></td>
<td class="list-of-questions__item">Determine whether a given string is valid Hex color code.</td>
<td class="list-of-questions__item">
<a href="reg-exp/hex_color_code">
<div class="button">Solve</div>
</a>
</td>
</tr>
<tr class="list-of-questions__row">
<td class="list-of-questions__item"><strong>Valid Number?</strong></td>
<td class="list-of-questions__item">Match a valid phone number.</td>
<td class="list-of-questions__item">
<a href="reg-exp/valid_number">
<div class="button">Solve</div>
</a>
</td>
</tr>
<tr class="list-of-questions__row">
<td class="list-of-questions__item"><strong>Validate Password</strong></td>
<td class="list-of-questions__item">Validate a password to have the following criteria: 8-16 characters must include: 1 lowercase, 1 uppercase, 1 number only lowercase, uppercase, and numbers are valid</td>
<td class="list-of-questions__item">
<a href="reg-exp/validate_password">
<div class="button">Solve</div>
</a>
</td>
</tr>
</table>
</div>
</body>
</html>