-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogramming.html
More file actions
55 lines (51 loc) · 1.75 KB
/
programming.html
File metadata and controls
55 lines (51 loc) · 1.75 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>DefinitelyNotAFreak - Programming</title>
<meta name="viewport" content="width=device-width initial-scale=1"/>
<link rel="stylesheet" href="css/site.css"/>
</head>
<body>
<header>
<ul>
<a href="index.html">Home</a>
<a class="underlinedLink" href="#">Programming</a>
<a href="renders.html">Renders</a>
</ul>
</header>
<div class="headSpacer"></Div>
<main>
<!--Landing page-->
<div>
<h1 class="textCentered">
Programming
</h1>
</div>
<hr>
<div class="centeredColumn">
<h4 class="textCentered">
some languages I know:
</h4>
<ul class="textCentered">
<li>C</li>
<li>C++ (my favourite)</li>
<li>C# (I am most fluent in)</li>
<li>Java</li>
<li>Javascript</li>
<li>HTML/CSS (This website is proof hopefully :))</li>
<li>Python</li>
</ul>
<h4>
I am currently learning:
</h4>
<ul>
<li>Assembly (x86)</li>
</ul>
</div>
</main>
<footer>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>