-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
80 lines (75 loc) · 1.76 KB
/
main.html
File metadata and controls
80 lines (75 loc) · 1.76 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html>
<head>
<title> New html project in JAVA - class ex 1</title>
</head>
<!-- this is comment -->
<body>
<div>
<h1>Alon Locker</h1>
<div>
<p>I worked as QA at AVG for 4 years.<br>At the moment look for my next position.<br>In the mean time i also study automation in JAVA.</p>
</div>
<div>
<br><a href="https://www.linkedin.com/in/alon-locker-ab8a5211/">Follow me on
<span style="color:blue">LInkedIn</span><img src="http://icons.iconarchive.com/icons/creativenerds/wooden-social/128/linkedin-icon.png" style="width:30px;hight:30px"></a>
</div>
<div>
<br><img src="https://media.licdn.com/media/p/1/000/048/309/2767044.jpg" alt="My profile image in Linkedin">
</div>
</div>
<form title="Class ex on forms">
<table>
<tr>
<td>
<div align="center"><span style="color:blue">Class Form Builder ex!</span></div>
</td>
</tr>
<tr>
<td>First Name:</td>
<td><input type="text" name="first"></td>
</tr>
<br>
<tr>
<td>Last Name:</td>
<td><input type="text" name="last"></td>
</tr>
<br>
<tr>
<td>Gender:</td>
<td><input type="radio" name="gender" checked>Male
<input type="radio" name="gender">Female</td>
<br>
<tr>
<td>Country:</td>
<td>
<select name="Country">
<option value="IL">Israel</option>
<option value="US">USA</option>
<option value="IT">Italy</option>
<option value="CH">China</option>
<option value="JP">Japan</option>
</select>
</td>
</tr>
<br>
<tr>
<td>My Color: </td>
<td>
<input type="checkbox" name="blue">Blue
<input type="checkbox" name="fistuk">Fistuk
<input type="checkbox" name="orange">Orange
</td>
</tr>
<br>
<tr>
<td>Description: </td>
<td><textarea name="myText" rows="10" cols="25"></textarea></td>
</tr>
<br>
<tr>
<td><input type="submit" value="Send Form"></td>
</tr>
</table>
</form>
</body>
</html>