forked from GreatDevelopers/SoM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinput.html
More file actions
34 lines (31 loc) · 783 Bytes
/
input.html
File metadata and controls
34 lines (31 loc) · 783 Bytes
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
<!doctype html>
<head>
<title>
triangle
</title>
<script src="myScript.js"></script>
<p><link rel="stylesheet" href="style.css"></p>
</head>
<body>
<div id="header" >
<h1><i> DRAW TRINGLE </i></h1>
<div class="canvas">
<canvas id="myCanvas">
</canvas>
</div>
<div class="input">
<label>Enter width of triangle</label>
<input type="text" id="userInputx"=></input>
<label>Enter height of triangle</label>
<input type="text" id="userInputy"=></input>
<label>Enter angle to rotate triangle</label>
<input type="text" id="userInputr"=></input>
<button onclick="test()">Submit</button>
</div>
<p id="detail" ></p>
<div class ="footer">
<h3><i>SoM Problems Developed by Alok Kumar</i></h3>
</div>
</div>
</body>
</html>