-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (72 loc) · 2.72 KB
/
index.html
File metadata and controls
90 lines (72 loc) · 2.72 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
85
86
87
88
89
90
<!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">
<title>Eva Blog</title>
<!-- Link To Css-->
<link rel="stylesheet" href="css/style.css">
<!--Box Icons-->
<link href='https://unpkg.com/boxicons@2.1.2/css/boxicons.min.css' rel='stylesheet'>
<!--Favicon -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
</head>
<body>
<!--Header-->
<header>
<!--Nav-->
<div class="nav container">
<!--Logo-->
<a href="#" class="logo"><span>Eva</span> Blog</a>
<!--Post Filter-->
<span class="filter-item active-filter" data-filter="all">All</span>
<span class="filter-item" data-filter="EVA">Eva</span>
<span class="filter-item" data-filter="WEB3">Web3</span>
<span class="filter-item" data-filter="DESO">DeSo</span>
<span class="filter-item" data-filter="CRYPTO">Crypto</span>
<span class="filter-item" data-filter="NFT">NFT</span>
</div>
</header>
<!--Home-->
<section class="home" id="home">
<div class="home-text container">
<div class="home-title">The Future Of Social Media</div>
<span class="home-subtitle">Stay up with the latest!</span>
</div>
</section>
<!--Blogs-->
<section id="blogs" class="blog container">
<!--Blog 1-->
</section>
<!--Footer -->
<div class="footer container">
<p>© Eva Blog</p>
<div class="social">
<a href="https://twitter.com/web3_eva"><i class='bx bxl-twitter'></i></a>
<a href="https://discord.com/invite/4w8299MVTW"><i class='bx bxl-discord-alt' ></i></a>
</div>
</div>
<!-- Jquery Cdn-->
<script src="https://code.jquery.com/jquery-3.6.1.min.js" integrity="sha256-o88AwQnZB+VDvE9tvIXrMQaPlFFSUTR+nldQm1LuPXQ=" crossorigin="anonymous"></script>
<!--Link to Js-->
<script src="js/main.js"></script>
</body>
<script src="https://www.gstatic.com/firebasejs/7.14.2/firebase.js"></script>
<script type="module">
import API_KEY from "./js/apikey.js"
const firebaseConfig = {
apiKey: API_KEY,
authDomain: "eva-blog-32696.firebaseapp.com",
databaseURL : "https://eva-blog-32696-default-rtdb.firebaseio.com" ,
projectId: "eva-blog-32696",
storageBucket: "eva-blog-32696.appspot.com",
messagingSenderId: "182049745777",
appId: "1:182049745777:web:342960510f940aa85e24d0",
measurementId: "G-L6MQ77HH71"
};
// Initialize Firebase
const app = firebase.initializeApp(firebaseConfig);
</script>
<script src="./js/getadata.js"></script>
</html>