-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.html
105 lines (86 loc) · 3.38 KB
/
queries.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">
<link rel="stylesheet" href="./css/dashboard.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"/>
<title>Queries</title>
</head>
<body>
<div class="sidebar">
<div class="logo"><h1>REMY</h1></div>
<ul class="menu">
<li class="active">
<button>
<a href="dashboard.html"><i class="fas fa-tachometer-alt"></i></a>
<span>Dashboard</span></button>
</li>
<li class="active">
<button>
<a href="article.html"><i class="fa-solid fa-newspaper"></i></a>
<span>Blogs</span></button>
</li>
<li class="active">
<button>
<a href="index.html"><i class="fa-solid fa-house"></i></i></a>
<span>home</span></button>
</li>
<li class="active">
<button>
<a href="queries.html"><i class="fa-solid fa-clipboard-question"></i></a>
<span>querries</span></button>
</li>
<li class="active">
<button>
<a href="comments.html"><i class="fa-solid fa-comments" style="color: #000000;"></i></a>
<span>comments</span></button>
</li>
</ul>
</div>
<div class="main--content">
<div class="header--wrapper">
<div class="header--title">
<span>primary</span>
<h2>Dashboard</h2>
</div>
<div class="user--info">
<div class="search--box">
<i class="fa-solid fa-search"></i>
<input type="text" placeholder="search"/>
</div>
<img src="./assets/phot.png" alt=""/>
</div>
</div>
<div class="card--container">
<h2 class="main--title">QUERRIES</h2>
<div class="cards">
<div class="card--wrapper">
<!-- <div class="queries1">
<p>Frontend is my true passion and I really enjoy the whlie process of creating UIs,
from the first brainstorming, wireframes, mockups, design, all the way until the final product</p>
</div>
<div class="queries1">
<p>Frontend is my true passion and I really enjoy the whlie process of creating UIs,
from the first brainstorming, wireframes, mockups, design, all the way until the final product</p>
</div>
<div class="queries1">
<p>Frontend is my true passion and I really enjoy the whlie process of creating UIs,
from the first brainstorming, wireframes, mockups, design, all the way until the final product</p>
</div>
<div class="queries1">
<p>Frontend is my true passion and I really enjoy the whlie process of creating UIs,
from the first brainstorming, wireframes, mockups, design, all the way until the final product</p>
</div>
<div class="queries1">
<p>Frontend is my true passion and I really enjoy the whlie process of creating UIs,
from the first brainstorming, wireframes, mockups, design, all the way until the final product</p>
</div> -->
</div>
</div>
</div>
</div>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="./js/queries.js"></script>
</body>
</html>