16 lines
664 B
HTML
16 lines
664 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Printer</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" type="text/css" media="screen" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<input class="input" id="name" type="text" placeholder="To Print">
|
|
<input class="input1" id="coords" type="text" placeholder="Your coordinates (lat,long)">
|
|
<input class="update" id="update" type="submit" value="Submit" onclick="print();">
|
|
<script src="main.js"></script>
|
|
</body>
|
|
</html> |