-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (28 loc) · 1.49 KB
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.5.1.min.js" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<link rel="stylesheet" as="style" type="text/css" href="style.css">
<script src="script.js" type="text/javascript" rel="script" ></script>
<link rel="icon" as="image" href="https://img.icons8.com/fluent/50/cookie.png">
<title>Ajax Cookie Creator</title>
</head>
<body>
<div class="main">
<div class="title">Build Cookie Easy!</div>
<div class="input-group">
<input id="C_Name" type="text" placeholder="Cookie Name">
<input id="C_Content" type="text" placeholder="Cookie Content">
<input id="C_Path" type="text" placeholder="Cookie Path" >
<input id="C_Expire" type="number" placeholder="Expire Day(s)" min="1">
<input id="C_Set" type="submit" value="Submit">
</div>
<div class="footer">Follow Me on: <a class="dribble" target="_blank" href="https://dribbble.com/sinamajidi"></a> and <a target="_blank" class="replit" href="https://repl.it/@SinaMajidi"></a> </div>
</div>
</body>
</html>