-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Code Sync</title>
<!-- Style Sheet -->
<link rel="stylesheet" href="style.css">
<!-- font style - 'hack' -->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/hack-font@3/build/web/hack.css">
<!-- font style - 'ubuntu' -->
<link href="https://fonts.googleapis.com/css2?family=Ubuntu&display=swap" rel="stylesheet">
<!-- font-awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Header Section Starts -->
<div class="header">
<a href="">Code <i class="fa fa-refresh"></i> Sync</a>
<!-- <a href="">Code:Sync</a> -->
<nav>
<ul>
<span id="copymsg">URL copied!</span>
<li><a title="Click here to copy the URL!" onclick="copyToClipboard()">Share your code!</a></li>
</ul>
</nav>
</div>
<!-- Header Section Ends -->
<!--Body section starts-->
<div class="codearea">
<textarea class="textarea" id="textbox" placeholder="write your code here and share it to your code buddy!" autofocus spellcheck="false"></textarea>
</div>
<!--Body section ends-->
<!-- Java Script -->
<script src="./app.js"></script>
</body>
</html>