-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogs.html
More file actions
58 lines (54 loc) · 2.73 KB
/
Copy pathblogs.html
File metadata and controls
58 lines (54 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/svg+xml" href="./favicon.svg"/>
<title>Fuselock - Blog</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Fira+Code:wght@400;500&display=swap" rel="stylesheet">
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="header-container">
<div class="header">
<a href="index.html" class="nav-button">HOME</a>
<a href="#" class="nav-button">FEATURES</a>
<a href="blogs.html" class="nav-button">BLOG</a>
<a href="https://github.com/fuselockhq" class="nav-button" target="_blank" rel="noopener noreferrer">GITHUB</a>
</div>
</div>
<div class="container">
<h1>Latest Blog Posts</h1>
<div class="blog-post">
<a href="blogs/understanding-cves.html" class="blog-title">
<h2>Understanding CVEs and Their Impact on Application Security</h2>
</a>
<div class="blog-meta">Published on March 15, 2024 • 5 min read</div>
<div class="blog-excerpt">
Learn about Common Vulnerabilities and Exposures (CVEs), how they affect your applications, and why staying ahead of them is crucial for maintaining secure software.
</div>
<a href="blogs/understanding-cves.html" class="read-more">Read More →</a>
</div>
<div class="blog-post">
<a href="blogs/security-best-practices.html" class="blog-title">
<h2>Security Best Practices for Modern Web Applications</h2>
</a>
<div class="blog-meta">Published on March 10, 2024 • 8 min read</div>
<div class="blog-excerpt">
Discover essential security practices that every developer should implement to protect their web applications from common vulnerabilities and attacks.
</div>
<a href="blogs/security-best-practices.html" class="read-more">Read More →</a>
</div>
<div class="blog-post">
<a href="blogs/fuselock-features.html" class="blog-title">
<h2>Getting Started with FuseLock: Key Features and Implementation</h2>
</a>
<div class="blog-meta">Published on March 5, 2024 • 6 min read</div>
<div class="blog-excerpt">
A comprehensive guide to implementing FuseLock in your projects, highlighting key features and best practices for optimal security coverage.
</div>
<a href="blogs/fuselock-features.html" class="read-more">Read More →</a>
</div>
</div>
</body>
</html>