forked from multiverseweb/CodeIt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
243 lines (232 loc) · 9.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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CodeIt</title>
<link rel="stylesheet" href="resources/home-style.css" />
<link rel="stylesheet" href="resources/style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<link rel="stylesheet" href="https://unpkg.com/leaflet/dist/leaflet.css" />
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Sometype+Mono:ital,wght@0,400..700;1,400..700&display=swap"
rel="stylesheet" />
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />
<link rel="shortcut icon" href="images/Nomenclature.png" type="image/x-icon" />
</head>
<body id="body">
<button class="top" id="top" onclick="topFunction()">
<img src="images/top.png" alt="" />
</button>
<button type="button" id="theme" onclick="dark()">
<img src="images/moon.png" class="moon" id="themeLogo" />
</button>
<div class="top-elements">
<a href="index.html" class="top-link"><img src="images/Nomenclature.png" alt="logo" class="logo" id="logo" />
<p class="codeit">CodeIt</p>
</a>
<nav class="navbar">
<div class="navbar-container">
<table id="navbar_table">
<tr>
<td class="nav-item" id="current">
<a href="" class="home">Home</a>
</td>
<td class="nav-item">
<a href="pages/refine.html" class="competitive">Code Refiner</a>
</td>
<td class="nav-item">
<a href="pages/obfuscation.html" class="obfuscation">Code Obfuscator</a>
</td>
<td class="nav-item">
<a href="pages/timeComplexity.html" class="time">Time Complexity Analyser</a>
</td>
<td class="nav-item">
<a href="#contributeSection">Contribute!</a>
</td>
<td class="nav-item"><a href="#feedback">Give Feedback!</a></td>
<td class="nav-item">
<a href="https://github.com/multiverseweb/CodeIt/blob/main/LICENSE#L3">License</a>
</td>
<div class="highlight"></div>
</tr>
</table>
</div>
</nav>
<!-- Hamburger for smaller screens -->
<div class="hamburger" onclick="toggleSidebar()">
<span class="material-symbols-outlined"> unfold_more </span>
</div>
<!-- Sidebar structure -->
<div id="sidebar" class="sidebar">
<span class="close-btn" onclick="toggleSidebar()">×</span>
<a href="" class="home">Home</a>
<a href="pages/refine.html" class="competitive">Code Refiner</a>
<a href="pages/obfuscation.html" class="obfuscation">Code Obfuscator</a>
<a href="pages/timeComplexity.html" class="time">Time Complexity Analyser</a>
<a href="../index.html#contributeSection">Contribute!</a>
<a href="../index.html#feedback">Give Feedback!</a>
<a href="https://github.com/multiverseweb/CodeIt/blob/main/LICENSE#L3">License</a>
</div>
<div class="gap"></div>
</div>
<div class="section-l" id="intro">
<div class="left">
<div class="top_codeit">
<p id="code">Code</p>
<p>It</p>
</div>
<div class="typewriter">
<p>Developing for the Developers.</p>
</div>
<br />
<p class="text">
CodeIt helps developers like you write, analyze, and protect your
code—all in one place. Whether you're just starting out or a pro,
CodeIt makes coding easy, fast, and secure.
</p>
<br />
<p class="text">
The adjoining map shows people who are using or contributing to
CodeIt.
</p>
</div>
<div class="right">
<div id="map"></div>
</div>
<div class="scroll_icon" id="scroll_icon">
SCROLL TO KNOW MORE
<div class="shadow" id="shadow"></div>
<div class="scroll_animation"></div>
</div>
</div>
<div class="section-r" id="refine">
<div class="left">
<p class="heading" id="heading">Key Features</p>
<p class="subheading">Code Refinement</p>
<p class="text">
Quickly convert your default / boilerplate code to a more useful and
executable code in one click! <br /><br />It reduces repetitive tasks,
manual mistakes and saves time.
<br />
</p>
</div>
<div class="right">
<img src="images/coedit.png" class="preview" />
</div>
</div>
<div class="section-l" id="obfuscate">
<div class="left" id="zoom">
<img src="images/obfuscation.png" class="preview" id="obfuscatePreview" />
</div>
<div class="right">
<p class="subheading">Code Obfuscation</p>
<p class="text">
Make your code harder to read and understand but still executable. It
adds an extra layer of security, protecting your code from plagiarism.
<br /><br />This feature is of great importance when you're working on
innovative projects.
</p>
</div>
</div>
<div class="section-r" id="nomenclature">
<div class="left">
<p class="subheading">Smart File Naming</p>
<p class="text">
Follow a fixed file naming convention, which helps reducing the
overhead of manual file management. <br /><br />It is useful for the
developers working on large and collaborative projects.
<br />
</p>
</div>
<div class="right">
<img src="images/naming.png" class="preview" />
</div>
</div>
<div class="section-l" id="complexity">
<div class="left">
<img src="images/complexity.png" class="preview" />
</div>
<div class="right">
<p class="subheading">Time Complexity Analysis</p>
<p class="text">
Understand how fast your code runs and optimize it for better
performance. CodeIt also visualises the time complexity on a
line-chart for better understanding.
</p>
</div>
</div>
<div class="section-r" id="working">
<div class="left">
<p class="heading">How CodeIt Works?</p>
<p class="subheading">I. Choose Your Task...</p>
<p class="text">
Select from code conversion, obfuscation, file naming, or analysis.
</p>
<br />
<p class="subheading">II. Upload Your Code...</p>
<p class="text">Paste your code into the tool.</p>
<br />
<p class="subheading">III. Get Instant Results!</p>
<p class="text">See the results immediately and copy them if needed.</p>
<br />
</div>
<div class="right">
<img src="images/flowChart.png" class="preview" id="flowchart" />
</div>
</div>
<div class="section-l" id="contributeSection">
<div class="left">
<img src="images/working.png" class="preview" />
</div>
<div class="right">
<p class="heading">Want to contribute to this Project?</p>
<p class="text">
As this is an Open-Source Software, contributions are always welcome. Whether you're interested in adding new
features, fixing bugs, or improving documentation, your contributions are valuable. You can contribute to the
project by visiting the link to the GitHub repository provided below. Join me in making CodeIt even better for
everyone!
</p>
<a class="contributeBtn" href="https://github.com/multiverseweb/CodeIt">Contribute<img
src="https://static-00.iconduck.com/assets.00/github-icon-2048x1999-d37ckpm6.png" id="github"></a>
</div>
</div>
<div class="design_line"></div>
<footer>
<div class="left_last">
<div class="contact">
<div class="name">
<img src="images/Nomenclature.png" alt="" class="end-logo" />
<a class="subheading" href="index.html" id="last_link">CodeIt</a>
</div>
</div>
<div class="right_last">
<form name="CodeIt Reviews" action="POST" data-netlify="true" id="feedback">
<p>Let Us Know Your Thoughts!</p>
<input type="text" name="Name" placeholder="Your Name" required />
<input type="email" name="Email" placeholder="Your Email ID" required />
<input name="Feedback" placeholder="Your Feedback" required></input>
<button type="submit" id="send">Send</button>
</form>
</div>
</footer>
<div class="last">
<p>
Designed & Developed by Tejas Gupta<br /><a
href="https://github.com/multiverseweb/CodeIt/blob/main/LICENSE">© 2024 Tejas Gupta</a>
</p>
<div class="links">
<button class="footer_logo" onclick="copylink()" id="link">
<img src="https://icons.veryicon.com/png/o/miscellaneous/foundation-icon-5/link-86.png" alt="" />
</button>
<a href="https://github.com/multiverseweb/CodeIt" class="footer_logo"><img
src="https://pngimg.com/d/github_PNG83.png" alt="" id="link2" /></a>
</div>
<script src="resources/homeScript.js"></script>
<script src="resources/common_functions.js"></script>
</body>
</html>