-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
69 lines (65 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="stylesheets/style.css">
<link rel="stylesheet" href="stylesheets/index.css">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="images/site.webmanifest">
<title>Beatrice's webzone</title>
</head>
<body>
<main class="container">
<header class="header">
<h1>The World Wide Web of Beatrice</h1>
</header>
<aside id="sidebar">
<p> In the end, we were all just text on a screen...</p>
</aside>
<nav class="nav">
<section class="flexbox-nav">
<div class="nav-btn"><a href="index.html"><h2>Main Page</h2></a></div>
<div class="nav-btn"><a href="about.html"><h2>About Me</h2></a></div>
<div class="nav-btn"><a href="portfolio.html"><h2>Portfolio</h2></a></div>
<div class="nav-btn"><a href="hobby-blog.html"><h2>Hobby Blog</h2></a></div>
</section>
</nav>
<article class="content">
<p><strong>Hiya!</strong> I'm an aspiring software developer with the insanely good fortune
to be attending <a href="https://adadevelopersacademy.org/">Ada Developers Academy</a> in Seattle, Washington.
My pronouns are she/her and I am in my late 20s. When other children dreamed about being astronauts or popstars,
I knew I wanted to work with computers. I have always been a relentless technological tinkerer that easily finds herself lost
in project and internet rabbit holes for hours. I am beyond thrilled to be taking my first steps into making money
doing what I love to do.</p>
<h3>Technical Skills</h3>
<ul>
<li>Network and Software configuration <img src="images/battery5.png" width=50 alt="Highly proficient"></li>
<li>GNU/Linux system administration <img src="images/battery4.png" width=50 alt="Proficient"></li>
<li>Ruby<img src="images/battery3.png" width=50 alt="Still learning"></li>
<li>HTML/CSS <img src="images/battery2.png" width=50 alt="Just starting"></li>
</ul>
<h3>Areas of Interest</h3>
<ul>
<li>Everything CLI and terminal</li>
<li>Internet security/privacy</li>
<li>"Obsolete" software/hardware</li>
<li>Effects of technology on society</li>
</ul>
<section class="nav-blurb"><p>You've reached the end of this page! For a longer version of this blurb, see <a href="about.html">About Me</a>
Alternately, check out my <a href="portfolio.html">Portfolio</a> or my <a href="hobby-blog.html">Hobby Blog</a></p></section>
</article>
<footer class="footer">
<section class="flexbox-footer">
<img alt="Under construction symbol" src="images/under-construction.gif">
<img alt="Transgender flag" src="images/transparent-trans-flag.png" width=76 height=76>
<em class="copyleft">Copyleft 2020 by Beatrice T</em>
<a href="https://www.kernel.org/"><img alt="Penguin mascot of the Linux operating system" src="images/tux.png" width=76 height=76></a>
<a href="https://github.com/Beatress"><img alt="Follow me on GitHub" src="images/octo-cat.gif"></a>
<a href="https://neocities.org/"><img alt="Powered by Neocities" src="images/penelope.png"></a>
</section>
</footer>
</main>
</body>
</html>