2024-10-02 18:48:49 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
|
|
|
<title>UTSA Placeholders</title>
|
|
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
|
2024-10-09 18:19:10 -05:00
|
|
|
<link rel="stylesheet" href="./canvas.css">
|
2024-10-02 18:48:49 -05:00
|
|
|
</head>
|
|
|
|
|
2024-10-09 18:19:10 -05:00
|
|
|
<body>
|
2024-10-09 19:02:59 -05:00
|
|
|
<div class="wrapper">
|
|
|
|
<div class="navbarCont">
|
2024-11-06 18:16:21 -06:00
|
|
|
<a class="icon" href="./index.html"><img src="navbarlogo.png"></img></a>
|
|
|
|
<a class="title" href="./index.html">ThePlaceHolders</a>
|
|
|
|
<a class="rightB" href="./contact.html">Contact</a>
|
|
|
|
<a class="rightB">Login</a>
|
|
|
|
<a class="rightB">Settings</a>
|
2024-10-09 19:02:59 -05:00
|
|
|
</div>
|
2024-10-30 18:43:08 -05:00
|
|
|
<!--note to self: below IS the canvas-->
|
2024-10-09 19:02:59 -05:00
|
|
|
<div class="canvasCont">
|
2024-10-16 18:41:26 -05:00
|
|
|
<canvas id="canvas" width="500" height="500" style="border:1px solid #000000;" alt="canvas"></canvas>
|
2024-10-09 23:18:42 -05:00
|
|
|
<div id="toolbar" class="toolbar">
|
|
|
|
<div class="toolbarItems">
|
2024-10-29 21:32:06 -05:00
|
|
|
<button id="zoomOut">-</button>
|
2024-10-09 23:18:42 -05:00
|
|
|
</div>
|
|
|
|
<div class="toolbarItems">
|
2024-10-29 21:32:06 -05:00
|
|
|
<label for="stroke">Strokes</label>
|
|
|
|
<input id="stroke" name="stroke" type="color" class="strokePicker">
|
2024-10-09 23:18:42 -05:00
|
|
|
</div>
|
|
|
|
<div class="toolbarItems">
|
2024-10-29 21:32:06 -05:00
|
|
|
<button onclick="zoomIn"id="zoomIn">+</button>
|
2024-10-09 23:18:42 -05:00
|
|
|
</div>
|
|
|
|
</div>
|
2024-10-30 18:43:08 -05:00
|
|
|
</div>
|
|
|
|
<!--note to self: above IS the canvas-->
|
2024-10-09 23:18:42 -05:00
|
|
|
</div>
|
|
|
|
<script src="./canvas.js"></script>
|
2024-10-09 18:19:10 -05:00
|
|
|
</body>
|
2024-10-02 18:48:49 -05:00
|
|
|
</html>
|