-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathf.html
More file actions
20 lines (20 loc) · 799 Bytes
/
f.html
File metadata and controls
20 lines (20 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html>
<title>Image Compare</title>
<meta charset="utf-8"/>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<body>
<header style="background-color: rgb(3, 136, 209); height: 170px; padding: 102px 20px 20px;">
<h2 style="color: white;"><center>Image Comparer</center></h2>
</header>
<form method ="post" action="compare.php" style="margin-top: 50px; margin-left: 100px;">
Image 1:
<input type="text" name="image1" placeholder="Paste the URL here" style="margin-bottom: 25px; width: 238px;">
<br>
Image 2:
<input type="text" name="image2" placeholder="Paste the URL here" style="margin-bottom: 25px; width: 238px;">
<br><br><br>
<input type="submit" value="Submit" class="btn" style="background-color: rgb(12, 148, 222); color: white;">
</form>
</body>
</html>