-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (77 loc) · 3.4 KB
/
index.html
File metadata and controls
84 lines (77 loc) · 3.4 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
81
82
83
84
<!-- Day 1 <code> -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap import-->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
<title>Insta Gif App</title>
</head>
<body>
<!-- <div class = "container-fluid d-flex justify-content-center">
<div class = "text-center">
<h1>Insta Gif App</h1>
<p>Its just a cheap copy of a insta with gifs instead of pictures and reels</p>
<input placeholder = "Type as you wish">
<div class = "mt-3">
<button class = "btn btn-info">Click me!</button>
</div>
</div>
</div> -->
<div class = "container-fluid d-flex justify-content-center">
<div class = "text-center">
<div class = "card m-3">
<div class ="mt-3 d-flex justify-content-center"">
<!-- <img class="card-img-top" src="rainbow.PNG" alt="Gify"> -->
<h5>🌈 Gify</h5>
</div>
<div class ="input-tab-for-gif m-2">
<input placeholder = "https://media.giphy.com" class="gif-link">
<button class="add-icon" style="width: 2rem; height: 2rem;">👍</button>
</div>
<div class = "gifs">
<img class="card-img-top" src="https://media.giphy.com/media/NmGbJwLl7Y4lG/giphy.gif" alt="Gify">
<div class="card-body">
<h4 class="card-title">Git By Daks</h4>
<span>0 Likes ❤️</span>
</div>
</div>
</div>
</div>
<script src = "index.js">
</script>
</body>
</html>
<!-- Day 2 code -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/css/bootstrap.min.css">
<script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.1/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<div class="container-fluid d-flex justify-content-center">
<div class="">
<div class="mt-3 d-flex justify-content-center">
<h5>🌈 Gify</h5>
</div>
<div class="input-tab-for-gif m-2">
<input placeholder="Gif Link Please" class="gif-link"><button class="add-gif">👍🏻</button>
</div>
<div class="gifs">
</div>
</div>
</div>
<script src="index.js"></script>
</body>
</html>