Skip to content

Commit

Permalink
feat: add template.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Wazzabeee committed May 4, 2024
1 parent 15f4264 commit 1f28478
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions scripts/template.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plagiarism Detection Results</title>
<style>
body, html {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
}

.container {
display: flex;
justify-content: space-between;
padding: 20px;
}

.content {
width: 48%;
border: 1px solid #ddd;
padding: 10px;
overflow: auto;
height: 90vh;
}

h3 {
color: #333;
border-bottom: 1px solid #ddd;
padding-bottom: 5px;
}

span {
display: inline;
}

a {
color: #06c;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<div class="content" id="leftContent"></div>
<div class="content" id="rightContent"></div>
</div>
</body>
</html>

0 comments on commit 1f28478

Please sign in to comment.