-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton-types.html
More file actions
42 lines (42 loc) · 1.86 KB
/
button-types.html
File metadata and controls
42 lines (42 loc) · 1.86 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
42
<!doctype html>
<html lang=en>
<head>
<title>page printer buttons</title>
<meta charset="utf-8">
<!-- <meta details go here> -->
<meta name="google-adsense-account" content="ca-pub-9639638377144073">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="x-UA Compatible" content="ie=edge">
<meta name="author" content="Orris A BakerJr">
<meta name="description" content="HTML, Jquery, Javascript, Multimedia document">
<meta name="theme-color" content="#712cf9">
<meta name="keywords" content="HTML5, Node.js, Jquery">
<meta name="author" content="Ian Andolina">
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="../Bootstrap/dist/assets/img/HTMLBadge.ico">
<link rel="icon" type="image/x-icon" href="../Bootstrap/dist/assets/favicon.ico">
<link rel="alternate" type="application/pdf" href="MainPage.pdf">
<link rel="author" href="mailto:[email protected]">
<link rel="author" type="text/html" href="https://orrisb.github.io">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9639638377144073" crossorigin="anonymous"></script>
<!--Add conditional Javascript-->
<!--<link to style sheet goes here�>-->
<style type="text/css">
#printbtn { margin-bottom:10px; padding:5px; font-weight:bold; background:aqua; color:black;
}
.button { text-align:center;
}
</style>
</head>
<body>
<br><br>
<div class="button">
<input type="button" value="Print this page" onclick="window.print()" title="Print this page">
<br><br>
</div>
<div class="button">
<input id="printbtn" type="button" value="Print this page" onclick="window.print()" title="Print this page">
</div>
<p> </p>
</body>
</html>