-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
86 lines (72 loc) · 3.17 KB
/
about.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
85
86
<!-- Simple personal projects blog website -->
<!DOCTYPE html>
<!-- Path: index.html -->
<html lang="en">
<head>
<script src="cubeScript.js"></script>
<script src="prism.js"></script>
<link rel="stylesheet" href="prism.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Henri's world</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="styleCube.css">
</head>
<body>
<div class="container">
<!-- Navigation bar -->
<div class="navbar">
<div class="cube3d_scene">
<div class="cube3d">
<div class="front"> <img src="images/cubeFace.png"> </div>
<div class="back"> <img src="images/cubeFace.png"> </div>
<div class="right"> <img src="images/cubeFace.png"> </div>
<div class="left"> <img src="images/cubeFace.png"> </div>
<div class="down"> <img src="images/cubeFace.png"> </div>
<div class="top"> <img src="images/cubeFace.png"> </div>
</div>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a>
</li>
<li><a href="about.html">About</a>
</li>
<li><a href="projects.html">Projects</a>
</li>
</ul>
</nav>
</div>
<!-- Main content -->
<div class="main">
<h1 id="Label">About</h1>
<p> Hi, I'm Henri. An Electrical Engineering student
that likes to code.
</p>
<h2> About the site</h2>
<p>
Prior to creating this site I had no experience in web-development.
This site was created in single day, while learning the basics of
HTML, CSS and JavaScript. (Additional projects/content were added later.)
</p>
<pre class="line-numbers"><code class="language-c">
// Since HTML/CSS does not provide any syntax highlighting,
// the only external library used is prism.js
// Source: https://prismjs.com/
// This allows nice syntax highlighting of code
#include <stdio.h>
int main(argc, argv) {
return 0;
}
</code></pre>
<!--
<p>
As I have no work experience, the purpose of this site
is to show some of the projects I have done in the past
and that im capable of learning new things relatively fast.
</p>
-->
</div>
</div>
</body>
</html>