-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathname_string_dynamic.html
36 lines (33 loc) · 1 KB
/
name_string_dynamic.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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<style type="text/css">
.name, .string{
height: 20px;
padding-right: 40px;
margin-right: 80px;
}
.wrpr{
margin: 20px 0;
text-align: center;
}
.btn-sbmt{
background-color: red;
color: white;
height: 30px;
width: 30px;
}
</style>
</head>
<body>
<div class="wrpr">
<input class="name" type="text" placeholder="Your Name"></input>
<input class="string" type="text" placeholder="Random String"></input>
<button class="btn-sbmt" type="submit">GO</button>
</div>
<canvas id="cnvs" width="1000" height="700" style="border:1px solid #d3d3d3;">
Your browser does not support the HTML5 canvas tag.</canvas>
<script type="text/javascript" src="script.js"></script>
</body>
</html>