-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (34 loc) · 1.72 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
<!--
______________________________________________________________________________________________
| |
| Copyright 2024 ag-sanjjeev |
| |
| The source code is licensed under MIT-style License. |
| The usage, permission and condition are applicable to this source code as per license. |
| That can be found in LICENSE file or at https://opensource.org/licenses/MIT. |
|______________________________________________________________________________________________|
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, Initial-scale=1" />
<title>Glass Panel</title>
<!-- Style -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" integrity="sha512-9usAa10IRO0HhonpyAIVpjrylPvoDwiPUiKdWk5t3PyolY1cOd4DSE0Ga+ri4AuTroPR5aQvXU9xC6qOPnzFeg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" type="text/css" href="./dist/css/style.css" media="all" />
</head>
<body>
<main>
<section class="glass-panel">
<div class="container">
<h3 class="heading">Welcome You <i class="fas fa-hands-helping"></i></h3>
<p class="content">This is a sample content inside the glassy blurred backdrop panel.</p>
</div>
</section>
</main>
<div class="element-circle-1"></div>
<div class="element-circle-2"></div>
<div class="element-circle-3"></div>
</body>
</html>