-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (41 loc) · 913 Bytes
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<title>Home</title>
</head>
<body>
<header>
<nav>
<a href="register.html" title="Register">Register</a>
</nav>
<blockquote>
Welcome Back
</blockquote>
</header>
<div>
<form action="drawcircle.html">
Fill Color: <input type="color" value="#00ff40" name="fillcolor"><br>
Stroke Color: <input type="color" value="#ffff00" name="strokecolor"><br>
Stroke Width: <input type="number" style="width: 100px" value="4" name="strokewidth"><br>
<input type="submit" value="Draw Circle">
<!-- <div class="circle">
<svg height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="yellow" stroke-width="4" fill="green" />
</svg>
</div> -->
</form>
</div>
<footer>
<hr>
<div>
<span>
<img src="love.png" height="100" width="100">
</span>
<span>
<img src="html5.png" height="100" width="100">
</span>
</div>
<hr>
</footer>
</body>
</html>