-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path03-Links & Navigation.html
More file actions
38 lines (32 loc) · 949 Bytes
/
03-Links & Navigation.html
File metadata and controls
38 lines (32 loc) · 949 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>3 - Links & Navigation</title>
</head>
<body>
<!-- Basic Links -->
<a href="https://www.google.com" target="_blank">Visit Google</a>
<br />
<!-- Internal Page Link -->
<a href="assets/about.html" target="_blank">About Page</a>
<br />
<!-- Email Link -->
<a href="mailto:jd.codebase@gmail.com">Send Email</a>
<br />
<!-- Phone Link -->
<a href="tel:+9198989898">Call Now</a>
<br />
<!-- Download File -->
<a href="assets/resume.pdf" download>Download Resume</a>
<br /><br />
<!-- Navigation Menu -->
<nav>
<a href="index.html">Home</a>
<a href="assets/about.html">About</a>
<a href="assets/services.html">Services</a>
<a href="assets/contact.html">Contact</a>
</nav>
</body>
</html>