-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
101 lines (95 loc) · 4.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>RNDas Binary Recognizer</title>
<link rel="icon" type="image/x-icon" href="assets/img/favicon.ico">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href= "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@4.1.0"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-vis"></script>
<script src="assets/js/script.js" defer></script>
<script src= "https://kit.fontawesome.com/c353d71a36.js" crossorigin="anonymous"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
</head>
<body>
<nav class="navbar">
<div class="navbar-container">
<div class="navbar-logo">
<img src="assets/img/binary-code.png" alt="Logo">
<span style="font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif">RNDas Binary Recognizer</span>
</div>
<ul class="navbar-links">
<li><a href="/Binary-Recognizer/index.html">Home Page</a></li>
<li><a href="/Binary-Recognizer/tutorial.html">How to Use</a></li>
<li><a href="/Binary-Recognizer/about.html">About App</a></li>
<li><a href="https://rndastech.github.io/">About Me</a></li>
</ul>
<button class="contact-button" onclick="location.href='mailto:rndas2004@gmail.com'" type="button">Contact Me</button>
</div>
</nav>
<div class="container">
<section class="tools-board">
<div class="row" style="display: flex; justify-content: center; align-items: center;">
<ul class="options">
<li class="option active tool" id="pencil">
<i class="fas fa-pencil" id="icon"></i>
<span class="label">Pencil</span>
</li>
<li class="option tool" id="eraser">
<i class="fas fa-eraser" id="icon"></i>
<span class="label">Eraser</span>
</li>
</ul>
</div>
<div class="row buttons" style="text-align: center;">
<button class="clear-canvas" type="button">Clear Canvas</button>
<button class="save-img">Compute</button>
</div>
<div class="about-dev" style="text-align: center;">
<p>Developer: Ritesh N Das</p>
<a class="github-button" href="https://github.com/rndastech/Binary-Recognizer" data-color-scheme="no-preference: dark_dimmed; light: dark_dimmed; dark: light;" data-size="large" aria-label="Download rndastech/Binary-Recognizer on GitHub">View Github Repo</a>
</div>
</section>
<section class="drawing-board">
<canvas></canvas>
</section>
</div>
<div class="centered-container">
<p id="firstnum">00000000 ÷ 00000000 = 0</p>
<p id="secondnum">=> 0 ÷ 0 = 0</p>
<p style="font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif">Note: The ML Model is not perfect and can make mistakes.</p>
</div>
</body>
<footer>
<footer style="font-family:Arial, Helvetica, sans-serif">
<div class="footer-container">
<div class="footer-section about">
<h2>About Me</h2>
<p>Specialist @ CodeForces<br>4* @ CodeChef<br>NTSE Scholar<br>IIIT Allahabad '27</p>
</div>
<div class="footer-section links">
<h2>Quick Links</h2>
<ul>
<li><a href="/Binary-Recognizer/index.html">Home Page</a></li>
<li><a href="https://rndastech.github.io/">About Me</a></li>
<li><a href="https://github.com/rndastech">GitHub</a></li>
<li><a href="https://codeforces.com/profile/rn_das_2004">CodeForces</a></li>
</ul>
</div>
<div class="footer-section social">
<h2>Follow Me</h2>
<div class="social-links">
<a href="https://github.com/rndastech"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/rndascode/"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/in/ritesh-narayan-das-6196b3268/"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="footer-bottom">
© 2024 Ritesh Narayan Das
</div>
</footer>
</footer>
</html>