-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (38 loc) · 1.27 KB
/
index.html
File metadata and controls
41 lines (38 loc) · 1.27 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
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link rel="shortcut icon" href="icon/codesnap.png" type="image/x-icon">
<meta name="theme-color" content="#22262a">
<title>Code Snap | Indian Modassir</title>
<link rel="stylesheet" href="style.css">
<link rel="manifest" href="manifest.json">
</head>
<body>
<div id="content">
<div class="title-bar">
<div class="circ-wrap">
<div class="circ" style="--bg:#ff5f5a"></div>
<div class="circ" style="--bg:#ffbe2e"></div>
<div class="circ" style="--bg:#2aca44"></div>
</div>
<h4>Code Snap</h4>
</div>
<div class="inner-wrapper">
<section class="code-section">
<textarea id="code" placeholder="Type or paste snap code here..." spellcheck="false"></textarea>
</section>
<section class="snap-section">
<img id="download" src="icon/codesnap.png" alt="Snap" draggable="false" width="100" height="100">
<div class="wrap">
<div class="snap-shot">
<canvas></canvas>
</div>
</div>
</section>
</div>
</div>
<script src="script.js"></script>
</body>
</html>