-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
105 lines (68 loc) · 3.84 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ai tools</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
<style>
/* Custom CSS for setting margins */
.custom-container {
margin-left: 20px; /* You can adjust the margin size as needed */
margin-right: 20px; /* You can adjust the margin size as needed */
}
.center-btn {
display: flex;
justify-content: center;
align-items: center;
/* height: 100vh; */
}
</style>
</head>
<body>
<main class="mx-5 d-flex flex-column align-items-center mb-5">
<h1>Ai Universe Hub</h1>
<div id="sort-button" class="btn btn-danger">Sort By Date</div>
<!-- <div id="phonecontainer" class="row row-cols-1 row-cols-md-3 g-4 mt-3"> -->
<div id="phonecontainer" class="row row-cols-1 row-cols-md-3 g-4 mt-3 justify-content-center">
</div>
</main>
<div id="show-all" class="mb-5 d-flex justify-content-center align-items-center d-none">
<div id="show-all-button" class="btn btn-danger ">Show All</div>
</div>
<section>
<!-- Modal -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static" data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel" aria-hidden="true">
<div class="modal-dialog modal-xl">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="staticBackdropLabel">AI universe</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div id="mmodal-div" class="modal-body d-flex justify-content-center">
<!-- <div class="modal-div card border border-danger mx-2" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"></h5>
<p class="card-text"></p>
</div>
</div>
<div class="modal-div card border border-secondary mx-2" style="width: 18rem;">
<div class="card-body">
<h5 class="card-title"></h5>
<p class="card-text">Lorem ipsum, dolor sit amet consectetur adipisicing elit. Qui accusantium rerum iste iure sint possimus eaque. Modi qui deleniti ea?</p>
</div>
</div> -->
</div>
<div class="modal-footer">
<!-- <button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Understood</button> -->
</div>
</div>
</div>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>