-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit.htm
64 lines (51 loc) · 2.06 KB
/
edit.htm
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Edit Meme | Mayank Aggarwal</title>
<link rel="shortcut icon" type="image/jpg" href="icon.JPG"/>
<link rel="stylesheet" href="styles.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<!-- nav.navbar + tab -->
<nav class="navbar">
<div class="max-width">
<!-- div.logo>a + tab -->
<!-- <div class="logo"><a href="#">Mayank<span></span></a></div> -->
<div class="logo"><a href="index.htm">X <span>meme</span></a></div>
<!-- ul.menu>li*6>a -->
<ul class="menu">
<li><a href="https://www.linkedin.com/in/mayank-agg/">Contact</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<div class="add-meme">
<div class="max-width">
<form id="edit-form" class="edit-form">
<h1>Edit Meme</h1>
<div class="form-field">
<label for="caption">Caption:</label>
<input type="text" name="caption" id="caption" autocomplete="off">
<small></small>
</div>
<div class="form-field">
<label for="url">URL:</label>
<input type="text" name="url" id="url" autocomplete="off">
<small></small>
</div>
<div class="submit">
<input type="submit" value="Edit">
</div>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>