-
Notifications
You must be signed in to change notification settings - Fork 0
/
photoapp.html
48 lines (43 loc) · 1.43 KB
/
photoapp.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>Rottweiller</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>This is a Rottweiler photo app</h1>
<p>Welcome to my rottweiller photo app where you can learn instresting things about this awesome dog bred and submit
photos of you favourote dog </p>
<h2>Here are some facts about rottweillers</h2>
<ul>
<li>They are descended from accient Roman dogs.</li>
<li> They are use to guarde money</li>
<li> They gained popularity as police dogs</li>
<li> They are awaard winning therapy dogs</li>
<li> thay are the most abborable dogs</li>
</ul>
<img src="images/fav dog.jpg">
<h3> What is the gender of the rottweiler </h3>
<form name="app">
<fieldset>
<legend>
<label for="Male">Male</label>
<input id="" type="radio" name="gender" value="">
<label for="Female">Female</label>
<input id="" type="radio" name="gender" value="">
</legend>
</fieldset>
<label for="url"> enter your photo url
</label>
<input id="" type="text" name="url" value="">
<input type="button" name="" value="sumbit" onclick="saveFile()">
</form>
<div class="flex-container">
<img src="images/fav dog.jpg">
<img src="images/fav dog.jpg" >
<img src="images/fav dog.jpg" >
<img src="images/fav dog.jpg">
<img src="images/fav dog.jpg">
</div>
</body>
</html>