-
Notifications
You must be signed in to change notification settings - Fork 0
/
experience.html
44 lines (44 loc) · 3.49 KB
/
experience.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="/assets/henry.png">
<title>turtle's experience</title>
</head>
<body>
<header>
<div class="container" >
<img id="logonavbar" src="./assets/henry.png" alt="logo">
<h1 id="gradient3">turtle boi</h1>
<nav>
<ul>
<li><a href="contact.html">contact</a></li>
<li><a href="experience.html">experience</a></li>
<li><a href="projects.html">projects</a></li>
<li><a href="index.html">home</a></li>
</ul>
</nav>
</div>
</header>
<div id="top-part-exp">
<br>
<h1 class="heading">how long i've been programming for</h1>
<img style="display: inline; border: 4px solid white; border-radius: 20px; transform: translate(-20px, 0px);" src="./assets/vscode.png" width="600px">
<div style="width: 600px; text-align: center; float: right;">
<p style="display: inline; float: right; font-size: 18px; transform: translate(-20px, 10px);">My first look into programming was in 3rd grade, with the program <a href="https://scratch.mit.edu/">Scratch</a>. I used that program all the way up until 5th grade, where I bought a Raspberry Pi 4, which is a small computer. Through the Pi 4 I learned the basics of the coding language Python, and how to make some pretty cool things with it. I've been using HTML, CSS, and JavaScript since before 6th grade started. You can see my first foray into text languages <a href="https://editor.p5js.org/Turtle_codez/sketches/ao8Qng9Q5">here</a>. This project was created over 3 years ago, and while school was happening I took my first real foray into the world of web design, learning the very basics of HTML and CSS. The year after, I learned the workings of GitHub and Vercel, as well as how to host websites. The summer after, I took the Harvard online course known with the alias CS50W, a course on programming for the web. This helped me vastly increase my programming knowledge and become much better at HTML and CSS, boosting me from making basic 2000s style websites to making websites that can hold up to modern standards.</p>
</div>
</div>
<div id="middle-part-exp">
<br>
<h1 class="heading">what languages i know</h1>
<img style="display: inline; float: right; border: 4px solid white; border-radius: 20px; transform: translate(-40px, 0px);" src="./assets/icons.png" width="600px">
<div style="width: 600px; text-align: center; float: left;">
<p style="display: inline; float: left; font-size: 18px; transform: translate(20px, 100px);">I am fluent in TI-BASIC, the programming language of Texas Instruments calculators, and HTML. I am very good with CSS, and decent with JavaScript. I know enough Python to make some things, but it's not a language I'm super familiar with.</p>
</div>
<div id="footer" style="width: 100vw; height: 70px; transform: translateY(330px); position: sticky; z-index: 100; background-color: black;">
<p style="color: white; font-size: 15px; transform: translateY(20px); position: sticky; z-index: 101;">site made by turtle boi with pure code.</p>
</div>
</div>
</body>
</html>