-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (143 loc) · 4.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
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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Regex Tester - Landing Page</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<style>
body {
background-color: #282828;
color: white;
font-family: Consolas, monospace;
}
.container {
padding-top: 50px;
}
.header {
text-align: center;
margin-bottom: 40px;
}
.header h1 {
font-size: 3rem;
color: #ffcc00;
font-weight: bold;
}
.header p {
color: #aaaaaa;
}
.feature-box {
background-color: #333333;
padding: 30px;
border-radius: 10px;
margin-top: 30px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
}
.feature-box h3 {
color: #ffcc00;
}
.feature-box p {
color: #cccccc;
}
.btn-cta {
margin-top: 30px;
padding: 12px 24px;
font-size: 18px;
font-weight: bold;
background-color: #444444;
color: #ffcc00;
border: 1px solid #666666;
}
.btn-cta:hover {
background-color: #ffcc00;
color: #282828;
}
ul {
list-style-type: none;
padding-left: 0;
}
ul li i {
margin-right: 1px;
}
.footer {
text-align: center;
color: #aaaaaa;
font-size: 0.9rem;
margin-top: 40px;
}
.footer a {
color: #ffcc00;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.navbar {
background-color: #333333;
}
.navbar-brand {
color: #ffcc00;
font-weight: bold;
}
.navbar-nav .nav-link {
color: #66ff66;
}
.navbar-nav .nav-link:hover {
color: #ffcc00;
}
</style>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-fluid">
<a class="navbar-brand" href="#">Regex Tester</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="#home"><i class="fas fa-home"></i> Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#features"><i class="fas fa-cogs"></i> Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about"><i class="fas fa-info-circle"></i> About</a>
</li>
</ul>
</div>
</div>
</nav>
<div class="container" id="home">
<!-- Header -->
<div class="header">
<h1>Welcome to Regex Tester</h1>
<p>The best tool for testing and debugging regular expressions in real-time.</p>
<a href="https://regex-tester.tholumuzi.co.za/tester" class="btn btn-cta"><i class="fas fa-play"></i> Start Testing</a>
</div>
<!-- Features Section -->
<div class="feature-box" id="features">
<h3><i class="fas fa-cogs"></i> Key Features</h3>
<p>Regex Tester is designed for ease of use and speed, allowing you to test your regular expressions quickly and effectively:</p>
<ul>
<li><i class="fas fa-check-circle"></i> Real-time matching with live results.</li>
<li><i class="fas fa-check-circle"></i> User-friendly interface for testing any regex.</li>
<li><i class="fas fa-check-circle"></i> Clear and detailed group matches and results.</li>
<li><i class="fas fa-check-circle"></i> Support for common regex patterns and special characters.</li>
</ul>
</div>
<!-- Call-to-Action -->
<div class="text-center">
<a href="https://regex-tester.tholumuzi.co.za/tester" class="btn btn-cta"><i class="fas fa-play"></i> Test Your Regex Now</a>
</div>
</div>
<!-- Footer -->
<div class="footer">
<p>© 2024 Regex Tester | Developed by <a href="https://www.tholumuzi.co.za" target="_blank">Tholumuzi Khuboni</a></p>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>