-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
64 lines (62 loc) · 3.27 KB
/
contact.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
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Links</title>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<!-- Optional: Custom CSS -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/boxicons@latest/css/boxicons.min.css">
<link rel="icon" href="favicon.png" type="image/png">
</head>
<body class="test2">
<nav class="navbar navbar-expand-lg bg-body-tertiary px-4" data-bs-theme="dark">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="favicon.png" alt="Home" width="64" height="64">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup"
aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link active" href="contact.html">Links</a>
<a class="nav-link" href="projects.html">Projects</a>
<a class="nav-link" href="courses.html">Relevant Courses</a>
</div>
</div>
</div>
</nav>
<div class="container mt-5">
<h1 class="dark-theme-h1 display-1 text-center">Links</h1>
<div class="flex-container">
<!-- Photo Section -->
<div class="special-pic">
<img class="profile-image" src="profile_pic.jpg" alt="Your Photo">
</div>
<!-- Icons with Links -->
<div class="icon-links icons-back">
<a href="https://www.linkedin.com/in/keena-vasiloff/" target="_blank" class="fa-brands fa-linkedin fa-6x"></a>
<a href="mailto:[email protected]" class="bx bxl-gmail" style="font-size: 100px"></a>
<a href="https://github.com/TheGhostCoder0/" target="_blank" class="fa-brands fa-github fa-6x"></a>
<!-- Add more icons as needed -->
</div>
</div>
</div>
<!-- Bootstrap JS and jQuery -->
<script src="https://kit.fontawesome.com/647588f52e.js" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Rx+T1VzGupg4BHQYs2gCW9It+akI2MM/mndMCy36UVfodzcJcF0GGLxZIzObiEfa"
crossorigin="anonymous"></script>
</body>
</html>