-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
33 lines (31 loc) · 1.11 KB
/
popup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>My Clipboard</title>
<style>
p{
font-size: 16px;
}
</style>
</head>
<body>
<div style="width: 300px;">
<h1>Smart Clipboard</h1>
<br>
<div>
<h2>A Chrome Extension designed for CS50x Final Project</h2>
<h3>Created by Ka Wing (Louis) Tsang</h3>
<br>
<p>Simpy copy any text you want, and then open the clipboard by hovering over to your top right hand corner.
</p>
<p>It requires you to give permission for the browser to allow access to the information in your clipboard</p>
<p>In side the clipboard, you can find the text you just copied stored in a yellow card.</p>
<p>The clipboard can store up to 4 cards, and you can click the card to copy the text inside the card.</p>
</div>
</div>
</body>
</html>