forked from cs4241-22a/a1-gettingstarted
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (38 loc) · 940 Bytes
/
index.html
File metadata and controls
43 lines (38 loc) · 940 Bytes
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
<!doctype html>
<html lang="en">
<head>
<title>CS4241 Assignment 1</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./styles.css">
</head>
<body>
<h1>Information about Gabe Camacho</h1>
<div>
<p>
Hello, I'm Gabe, and I graduate in spring 2023 (hopefully)
</p>
<p>
I am a computer science major
</p>
<p>
I have taken various CS courses including Intro to AI, Software Engineering, Algorithms, Systems, OS, and some
others.
</p>
<h2>Experience</h2>
<p>
Working experience
</p>
<ul>
<li>HTML - a lot</li>
<li>CSS - more than I would like</li>
<li>Java - some</li>
<li>JavaScript - some</li>
<li>Ruby - none </li>
<li>Python - some </li>
<li>unit testing - some </li>
</ul>
<h2>Here is the color scheme for this page</h2>
<img src="./colorwheel.png" alt="color scheme">
</div>
</body>
</html>