-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboredom.html
More file actions
131 lines (112 loc) · 5.26 KB
/
boredom.html
File metadata and controls
131 lines (112 loc) · 5.26 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="en">
<head>
<title>Boredom Busters</title>
<!-- Site icons -->
<link rel="icon" href="./project-portal/images/favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="./project-portal/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./project-portal/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./project-portal/images/favicon-16x16.png">
<!-- Metadata -->
<meta charset="utf-8">
<meta name="keywords" content="software, developer, engineer, java, backend, back-end, Australian, aussie">
<meta name="author" content="Nathan Snow, AussieDev81">
<meta name="description" content="Software Engineer">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://aussiedev81.com">
<meta property="og:type" content="website">
<meta property="og:title" content="AussieDev81">
<meta property="og:description" content="Software Engineer">
<meta property="og:image" content="./project-portal/images/developer.jpg">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="aussiedev81.com">
<meta property="twitter:url" content="https://aussiedev81.com">
<meta name="twitter:title" content="AussieDev81">
<meta name="twitter:description" content="Software Engineer">
<meta name="twitter:image" content="./project-portal/images/developer.jpg">
<!-- Styling -->
<link rel="stylesheet" href="./project-portal/css/bootstrap.min.css">
<link rel="stylesheet" href="./project-portal/css/nivo-lightbox.css">
<link rel="stylesheet" href="./project-portal/css/nivo_themes/default/default.css">
<link rel="stylesheet" href="./project-portal/css/templatemo-style.css">
<link rel="stylesheet" href='https://fonts.googleapis.com/css?family=Montserrat:400,700' type='text/css'>
<!-- JavaScript dependencies -->
<script rel="preconnect" src="https://kit.fontawesome.com/068920eb91.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- navigation -->
<div class="container" id="navigation"></div>
<!-- home section -->
<div id="home">
<div class="container">
<div class="row">
<div class="col-md-5 col-sm-3"></div>
<div class="col-md-7 col-sm-9">
<h3><BoredomBusters/></h3>
</div>
</div>
</div>
</div>
<!-- divider section -->
<div class="divider">
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6">
<a href="versioning-guide">
<div class="divider-wrapper divider-one">
<i class="fa fa-solid fa-code-compare"></i>
<h2>Version Guide</h2>
<p>
A simple but useful tool to take the guesswork out of determining the next semantic version number for your
application
</p>
</div>
</a>
</div>
<div class="col-md-4 col-sm-6">
<a href="age-calculator">
<div class="divider-wrapper divider-two">
<i class="fa fa-solid fa-calculator"></i>
<h2>Age Calculator</h2>
<p>
Enter your date of birth to see how old you are in years, months, and days.<br/>
Bonus if it's your birthday!
</p>
</div>
</a>
</div>
<div class="col-md-4 col-sm-12">
<div class="divider-wrapper divider-three">
<i class="fa fa-solid fa-question"></i>
<h2>More Projects Coming Soon</h2>
<p>
</p>
</div>
</div>
</div>
</div>
</div>
<!-- footer section -->
<footer id="footer"></footer>
<!-- copyright section -->
<div class="copyright" id="copyright"></div>
<!-- scroll to top button -->
<button class="scroll-up-btn" id="scroll-btn" type="button" onclick="scrollUp()">
<i class="fa-solid fa-jet-fighter-up fa-2xl"></i>Top
</button>
<!-- javascript js -->
<script src="./project-portal/js/jquery.js"></script>
<script src="./project-portal/js/bootstrap.min.js"></script>
<script src="./project-portal/js/nivo-lightbox.min.js"></script>
<script src="./project-portal/js/custom.js"></script>
<script src="./project-portal/js/components.js"></script>
<script type="text/javascript">
document.getElementById("navigation").innerHTML = navContent("BOREDOM");
document.getElementById("footer").innerHTML = footerContent();
document.getElementById("copyright").innerHTML = copyrightContent();
</script>
</body>
</html>