-
Notifications
You must be signed in to change notification settings - Fork 4
/
scribble-pad.html
68 lines (66 loc) · 2.9 KB
/
scribble-pad.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="CSS/scribble-pad.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/FileSaver.js/2.0.0/FileSaver.min.js" integrity="sha512-csNcFYJniKjJxRWRV1R7fvnXrycHP6qDR21mgz1ZP55xY5d+aHLfo9/FcGDQLfn2IfngbAHd8LdfsagcCqgTcQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fabric.js/5.3.1/fabric.min.js" integrity="sha512-CeIsOAsgJnmevfCi2C7Zsyy6bQKi43utIjdA87Q0ZY84oDqnI0uwfM9+bKiIkI75lUeI00WG/+uJzOmuHlesMA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<nav>
<div class="logo">
<h2>PrescribePlus</h2>
</div>
<div class="mid-nav">
<a href="doctor_profile.html">Home</a>
<a href="video-call.html">Video</a>
<a href="DoctorList.html">Find Doctor</a>
<a href="#">Blog</a>
<a href="#">Pages</a>
<a href="email:[email protected]">Contact</a>
</div>
<div class="right-nav">
</div>
</nav>
<form class="signature-pad-form" action="#" method="POST">
<h1>Prescription</h1>
<canvas height="1000" width="500" class="signature-pad"></canvas>
<p><a href="#" class="clear-button">Clear</a></p>
<button class="share">Share</button>
</form>
<div class="bottom-div">
<div class="left">
<h1>Don’t Let Your Health <br>Take a Backseat!</h1>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. <br>Qui iusto asperiores quisquam dolore culpa exercitationem?</p>
</div>
<div class="right"></div>
</div>
<footer>
<div class="foot1">
<h1>PrescribePlus</h1>
<p><i class="fa-solid fa-location-dot"></i> 123, ABC Road</p>
<p><i class="fa-solid fa-phone"></i> 123-46-7890</p>
<p><FontAwesomeIcon icon="fa-regular fa-envelope" /> PrescribePlus.com</p>
</div>
<div class="foot2">
<p>About us</p>
<p>Deparments</p>
<p>Doctors</p>
<p>Timetables</p>
<p>Appoinments</p>
<p>Testimonials</p>
</div>
<div class="foot3">
<p>Blogs</p>
<p>Contacts</p>
<p>FAQS</p>
<p>Privacy Policy</p>
<p>Terms and Conditions</p>
</div>
</footer>
</body>
<script src="JS/scribble-pad.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js" integrity="sha512-qZvrmS2ekKPF2mSznTQsxqPgnpkI4DNTlrdUmTzrDgektczlKNRRhy5X5AAOnx5S09ydFYWWNSfcEqDTTHgtNA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</html>