-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (55 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Indian Sign Language - Home</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/loader.css">
<link rel="icon" href="images/favicon.png">
</head>
<body>
<!-- Loader -->
<div class="loader-wrapper">
<div class="loader">
<div class="hand-sign">🤟</div>
<div class="loading-text">Loading...</div>
</div>
</div>
<!-- Main Content -->
<div class="main-content hidden">
<nav class="navbar">
<div class="logo">ISL Detector</div>
<div class="nav-links">
<a href="index.html" class="active">Home</a>
<a href="detection.html">Try It Now</a>
</div>
</nav>
<header class="hero">
<div class="hero-content">
<h1>Indian Sign Language Detection</h1>
<p>Breaking communication barriers through technology</p>
</div>
</header>
<main>
<section class="about">
<h2>About Indian Sign Language</h2>
<p>Indian Sign Language (ISL) is the native language of the deaf community in India, serving approximately 5 million deaf people. It's a visual-spatial language with its own grammar, syntax, and vocabulary, distinct from spoken languages. ISL plays a crucial role in education, social interaction, and cultural expression within the Indian deaf community.</p>
<div class="isl-image">
<img src="images/isl-alphabet.png" alt="ISL Alphabet Chart">
<caption>Indian Sign Language Alphabet</caption>
</div>
</section>
<section class="cta">
<h2>Try Our ISL Detection System</h2>
<p>Experience real-time Indian Sign Language detection using your webcam or upload images.</p>
<a href="detection.html" class="cta-button">Launch Detector</a>
</section>
</main>
<footer>
<p>Created With Love ❤️ | © 2024</p>
</footer>
</div>
<script src="js/loader.js"></script>
</body>
</html>