-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.57 KB
/
Copy pathindex.html
File metadata and controls
38 lines (38 loc) · 1.57 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Free Turnitin Checker</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"
origin="anonymous" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet" />
<link rel="icon" type="image/png" href="./favicon.png" />
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<h1>Free Turnitin Checker</h1>
<div id="inputContainer">
<textarea id="inputText" rows="10" placeholder="Enter text to check..."></textarea>
<button class="floating-button" id="clearButton" onclick="clearTextArea()"><i class="fas fa-times"></i></button>
<button class="floating-button" id="pasteButton" style="right: 60px"><i class="fas fa-paste"></i></button>
</div>
<button id="checkButton" type="button" class="button" onclick="checkPlagiarism()">
<span class="button__text">Check plagiarism</span>
</button>
<div id="result"></div>
<div id="errorModal" class="modal">
<div class="modal-content">
<div class="modal-header">
<span class="close" onclick="closeModal()">×</span>
<h2>Error</h2>
</div>
<div id="errorText" class="modal-body"></div>
</div>
</div>
<footer class="site-footer">Made with ❤️ by Jerickson Mayor</footer>
<script src="./script.js"></script>
</body>
</html>