-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile-development.html
42 lines (40 loc) · 1.42 KB
/
mobile-development.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mobile Development</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Mobile Development</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="mobile-development.html">Mobile Development</a></li>
<li><a href="web-development.html">Web Development</a></li>
<li><a href="embedded-systems.html">Embedded Systems</a></li>
<li><a href="ai-and-ml.html">AI and ML</a></li>
<li><a href="game-development.html">Game Development</a></li>
<li><a href="software-development.html">Software Development</a></li>
<li><a href="systems-programming.html">Systems Programming</a></li>
<li><a href="cybersecurity.html">Cybersecurity</a></li>
<li><a href="big-data.html">Big Data</a></li>
<li><a href="blockchain.html">Blockchain</a></li>
<li><a href="automation-and-testing.html">Automation and Testing</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>About Mobile Development</h2>
<p>This page provides detailed insights into Mobile Development.</p>
</section>
</main>
<footer>
<p>© 2025 Programmer Fields | All Rights Reserved</p>
</footer>
</body>
</html>