-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFlipperZero.html
53 lines (46 loc) · 1.77 KB
/
FlipperZero.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flipper Zero - Jacob Horvitz</title>
<link rel="stylesheet" href="main_styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<div class="logo">
<h1>Jacob Horvitz</h1>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="finance.html">Finance</a></li>
<li><a href="social.html">Social Media</a></li>
<li><a href="FlipperZero.html">FlipperZero</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Flipper Zero Projects</h1>
<p>Exploring the capabilities of this versatile multi-tool.</p>
</section>
<section class="content">
<h2>What is Flipper Zero?</h2>
<p>The Flipper Zero is a multi-functional tool for developers, hackers, and enthusiasts. It's designed to interact with various access control systems, wireless communications, and more.</p>
<h2>Projects</h2>
<ul>
<li>RFID Card Cloning</li>
<li>Sub-GHz Signal Analysis</li>
<li>IR Remote Control Experiments</li>
<li>3D Printing Custom Cases and Accessories</li>
</ul>
</section>
<footer>
<p>© 2024 Jacob Horvitz. All rights reserved.</p>
</footer>
</body>
</html>