-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
98 lines (91 loc) · 3.83 KB
/
about.html
File metadata and controls
98 lines (91 loc) · 3.83 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
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - UDP Broadcast Simulation</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Fira+Code&display=swap">
<link rel="stylesheet" href="src/css/styles.css">
<link rel="stylesheet" href="src/css/about.css">
</head>
<body>
<!-- Background -->
<div class="background">
<div class="background-overlay"></div>
</div>
<!-- Navbar -->
<nav class="navbar">
<div class="nav-container">
<a href="index.html" class="nav-logo">
<img src="src/assets/network-icon.svg" alt="Network Icon">
<span>UDP Broadcast Simulator</span>
</a>
<ul class="nav-links">
<li><a href="index.html">Simulation</a></li>
<li><a href="documentation.html">Documentation</a></li>
<li><a href="about.html" class="active">About</a></li>
</ul>
</div>
</nav>
<!-- Main Content -->
<div class="container about">
<h1>About the Project</h1>
<div class="about-section">
<h2>Purpose</h2>
<p>This UDP Broadcast Simulator was created to demonstrate the principles of network broadcasting in a visual and interactive way. It serves as an educational tool for understanding how UDP broadcast communication works in computer networks.</p>
</div>
<div class="about-section">
<h2>Features</h2>
<div class="features-grid">
<div class="feature-card">
<div class="feature-icon">🔄</div>
<h3>Real-time Simulation</h3>
<p>Visual representation of UDP broadcast messages in real-time</p>
</div>
<div class="feature-card">
<div class="feature-icon">📊</div>
<h3>Network Logging</h3>
<p>Detailed logging of all network activities and broadcasts</p>
</div>
<div class="feature-card">
<div class="feature-icon">🎯</div>
<h3>Interactive UI</h3>
<p>User-friendly interface for sending and monitoring broadcasts</p>
</div>
</div>
</div>
<div class="about-section">
<h2>Technology Stack</h2>
<div class="tech-stack">
<div class="tech-item">
<img src="src/assets/tech/html5.svg" alt="HTML5">
<span>HTML5</span>
</div>
<div class="tech-item">
<img src="src/assets/tech/css3.svg" alt="CSS3">
<span>CSS3</span>
</div>
<div class="tech-item">
<img src="src/assets/tech/javascript.svg" alt="JavaScript">
<span>JavaScript</span>
</div>
</div>
</div>
<div class="about-section">
<h2>Contact</h2>
<p>For questions, suggestions, or feedback, please reach out through our GitHub repository or contact us directly.</p>
<div class="contact-links">
<a href="https://github.com/rendykml" class="contact-button">
<img src="/assets/icons/github.svg" alt="GitHub">
View on GitHub
</a>
<a href="https://www.instagram.com/rendy_kamaluddin/" class="contact-button">
<img src="src/assets/icons/email.svg" alt="Email">
Contact Us
</a>
</div>
</div>
</div>
<script type="module" src="src/js/about.js"></script>
</body>
</html>