-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprogramming.html
84 lines (72 loc) · 3.28 KB
/
programming.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html lang="en">
<!-- DEVELOPER: Kolleen Caffyn -->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.2/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link id="favicon" class="logo" rel="icon" href="img/lotus.png"> <!-- lotus by default-->
<link rel="stylesheet" href="styles/main.css"> <!--for the whole site-->
<link id="theme" rel="stylesheet" href="styles/light.css"> <!--theme -- light by default-->
<title>Kolleen Caffyn.</title>
</head>
<body>
<header>
<h1>Kolleen Caffyn.</h1>
<h4 id="subtitle">Graphic Designer, Digital Artist, Front-End Developer...Jack of All Trades, really.</h4>
<label id="switch">
<input type="checkbox" onclick="toggleTheme()" id="status">
<span class="slider"></span>
</label>
<nav class="navbar icon-bar navbar-fixed-bottom" id="mobile">
<a href="index.html"><i class="fa fa-home"></i></a>
<a href="illust.html"><i class="fa fa-paint-brush"></i></a>
<a href="resume.html"><i class="fa fa-file-text"></i></a>
<a href="contact.html"><i class="fa fa-envelope"></i></a>
</nav>
<nav class="navbar" id="desktop">
<div class="container-fluid">
<ul class="navbar-nav">
<li class="nav-item">
<img src="img/lotus.png" alt="Logo" style="max-width: 40px;" id="logo">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown">Works</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="illust.html">Illustrations</a></li>
<li><a class="dropdown-item" href="#">Programming</a></li>
<li><a class="dropdown-item" href="#">Music</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link" href="resume.html">Resume</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<!-- Content -->
<div id="wip">
<h1>Coming Soon!</h1>
<h2>This page is still a work in progress.<br>Be sure to check back here often for content!</h2>
</div>
</main>
</body>
<footer>
© Kolleen Caffyn || Privacy Statement || Terms of Use
</footer>
<script id="toggle" type="text/javascript" src="scripts/themeToggle.js"></script>
<script type="text/javascript" src="scripts/mobileDropup.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js">
$(document).ready(function() {
$('#desktop').element({prependTo:'#mobile'});
});
</script>
</html>