-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
executable file
·53 lines (45 loc) · 1.96 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- pageTitle id added to tell rules.js what page should be active in the navbar -->
<title id="pageTitle">Blog</title>
<meta lang="en" charset="UTF-8">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<!-- Font Awesome icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!-- Ensure proper mobile and desktop bootstrap rendering -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- Custom Javascript rules for this site -->
<script src="rules.js"></script>
<!-- JavaScript to load blog posts -->
<script src="posts.js"></script>
<!-- Personal stylesheet -->
<link rel="stylesheet" href="dchid.css">
</head>
<body>
<nav class="topnav" id="myTopnav"></nav>
<div class="container hidden">
<div class="row terminal">
<div class="col-lg-12">
<div class="start_terminal"></div><span>Hi there! Welcome to my computer science blog, where I post about
various projects I'm working on
as well as any topic in computing that I'd like to write about. You'll love this blog if you have a
life long learner attitude and love to tinker and experiment with computers as much as I do.
Be proud to be a computer geek!
</span>
</div>
</div>
<div id="blogContent"></div>
</div>
<footer>
<div class="footer_icons"></div>
</footer>
</body>
</html>