-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (97 loc) · 4.42 KB
/
Copy pathindex.html
File metadata and controls
106 lines (97 loc) · 4.42 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" />
<title>Home - Breaking Captcha</title>
<meta name="description" content="Using AI/ML/DP to break CAPTCHA prompt">
<link rel="icon" class="fa-10x" href="/breaking-captcha/resources/assets/img/logo.png">
<link rel="stylesheet" href="/breaking-captcha/resources/assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header>
<div id="navbar"></div>
</header>
<header class="masthead" style="background-image: url('/breaking-captcha/resources/assets/img/robot.jpg')">
<div class="overlay"></div>
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto position-relative">
<div class="site-heading">
<h1>Breaking Captcha</h1>
<span class="subheading">A HardHat Enterprises Project</span>
</div>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8">
<!--
<div class="post-preview">
<a href="#">
<h2 class="post-title">
Content under construction
</h2>
</a>
</div>
-->
</div>
</div>
</div>
<!--
<div class="d-grid justify-content-center">
<a href="/breaking-captcha/resources/pages/timeline.html" target="_blank" class="btn btn-lg btn-success">Take a Demo >></a>
</div>
-->
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto">
<p class="text-center">The goal of the Breaking CAPTCHA project is to develop machine learning, AI, and
computer vision models to autonomously solve CAPTCHA problems. The final product of the project will
be to provide end users with aninterface to solve these CAPTCHA problems. This user interface will
be the focus of future iterations</p>
</div>
</div>
</div>
<!--
<div class="d-grid justify-content-center">
<a href="#" target="_blank" class="btn btn-lg btn-success">Take a Demo >></a>
</div>
-->
<footer>
<div class="container">
<div class="row">
<div class="col-md-10 col-lg-8 mx-auto">
<ul class="list-inline text-center">
<li class="list-inline-item">
<span class="fa-stack fa-lg"><i class="fa fa-circle fa-stack-2x"></i><i
class="fa fa-twitter fa-stack-1x fa-inverse"></i></span>
</li>
<li class="list-inline-item">
<span class="fa-stack fa-lg"><i class="fa fa-circle fa-stack-2x"></i><i
class="fa fa-facebook fa-stack-1x fa-inverse"></i></span>
</li>
<li class="list-inline-item">
<span class="fa-stack fa-lg"><i class="fa fa-circle fa-stack-2x"></i><i
class="fa fa-github fa-stack-1x fa-inverse"></i></span>
</li>
</ul>
<p class="text-muted copyright">
Copyright © Breaking Captcha 2022
</p>
</div>
</div>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="/breaking-captcha/resources/assets/js/script.js"></script>
</body>
</html>