-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
104 lines (102 loc) · 4.74 KB
/
index.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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="/css/pico.min.css">
<script src="/js/main.js"></script>
<script src="/js/utils.js"></script>
<title>Angel Tomkins</title>
</head>
<body>
<div class="hero container-fluid" data-theme="light">
<nav>
<ul>
<li><strong><a href="#">Angel Tomkins</a></strong></li>
</ul>
<ul>
<li><a href="/#projects">Projects</a></li>
<li><a href="/blog">Blog</a></li>
</ul>
</nav>
<hr style="height:4px;background-color: #8e24aa">
</div>
<main class="container">
<hgroup>
<h1>Angel</h1>
<h3>Junior Software Developer</h3>
</hgroup>
<section id="about">
<h3>Who am I?</h3>
<p>I am an inspired software developer. I have experience with <strong>Rust</strong>, <strong>C</strong>, <strong>C++</strong>, and <strong>Python</strong> I have used these skills working on code on my <a href="https://github.com/AngelTomkins">Github</a>. I have experience working on application development with <strong>GTK</strong> on <strong>Linux</strong> devices such as: Desktop, Laptop, Tablet, Phone, and Servers.</p>
</section>
<section id="blog-posts">
<h3>Blog Posts</h3>
<div class="grid">
<article>
<h5 id="card-title-1">Lorem Ipsum</h5>
<p id="card-details-1">Dolar</p>
<p id="card-body-1">Dolar</p>
<footer>
<a role="button" id="card-btn-1" href="/blog/#0">Continue Reading</a>
</footer>
</article>
<article>
<h5 id="card-title-2">Lorem Ipsum</h5>
<p id="card-details-2">Dolar</p>
<p id="card-body-2">Dolar</p>
<footer>
<a role="button" id="card-btn-2" href="/blog/#1">Continue Reading</a>
</footer>
</article>
</div>
</section>
<section id="projects">
<hgroup>
<h3>Projects</h3>
<p style="text-align: center">All projects can be found on</p>
</hgroup>
<a role="button" href="https://github.com/AngelTomkins">My Github</a>
<div class="grid">
<article>
<p><img src="img/web.svg" width="90" height="90" alt="Globe with Meridians Emoji"></p>
<h5>This website. An example of writing a website using <strong>HTML</strong>, <strong>CSS</strong>, and <strong>Javascript</strong></h5>
<footer>
<a role="button" href="https://github.com/AngelTomkins/angeltomkins.github.io">More Info</a>
</footer>
</article>
<article>
<p><img src="img/snake.svg" width="90" height="90" alt="Snake Emoji"></p>
<h5>The Snake game written in object-oriented <strong>C++</strong> using <strong>SDL2</strong> library.</h5>
<footer>
<a role="button" href="https://github.com/AngelTomkins/snake">More Info</a>
</footer>
</article>
<article>
<p><img src="img/github-mark.svg" width="90" height="90" alt="Github Icon"></p>
<h5>Contribution to open source software and the location to find my personal projects</h5>
<footer>
<a role="button" href="https://github.com/AngelTomkins">More Info</a>
</footer>
</article>
</div>
</section>
</main>
<div class="hero">
<hr style="height:3px; width:90%; background-color:#8e24aa">
<footer class="container">
<div class="grid">
<div class="container-fluid">
<p><small><a class="footer_text" href="https://github.com/AngelTomkins/angeltomkins.github.io">Source Code</a></small></p>
<p><small><a class="footer_text" href="https://github.com/AngelTomkins">Github</a></small></p>
</div>
<div class="container-fluid">
<p><small>My Information:</small></p>
<p><small><a class="footer_text" href="mailto:[email protected]">[email protected]</a></small></p>
<p><small class="footer_text">Ontario, Canada</small></p>
</div>
</div>
</footer>
</div>
</body>
</html>