-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (83 loc) · 3.05 KB
/
index.html
File metadata and controls
90 lines (83 loc) · 3.05 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width,initial-scale=1.0,shrink-to-fit=no" />
<meta charset="UTF-8">
<title>Cameron Haley : Project One</title>
<link rel="stylesheet" href="style.css">
<!-- <link rel="stylesheet" href="//basehold.it/30"> -->
</head>
<body>
<header>
<h1>
Cameron Haley
<i>CSS 330: Project One</i>
</h1>
</header>
<article>
<h2>About Me</h2>
<p>
My name is Cameron Haley, and I am a second-year undergraduate
student studying Computer Engineering at Illinois Institute of
Technology. I was born and raised in Tullahoma, Tennessee, a small
town south of Nashville.
</p>
<figure>
<img src="https://i.imgur.com/cE2P8AZ.png"/>
<figcaption>
A view of my hometown <i>(Image source: Google Maps)</i>
</figcaption>
</figure>
<p>
I am one of four children in my family- I have a twin brother, and
my older brother and sister are also twins!
</p>
<p>
My first foray into web design was through a library called
<a href="https://p5js.org" title="p5.js Official Website">p5.js</a>,
a JavaScript library that I used to visualize a random idea I had at
the time (that I have since forgotten).
</p>
<p>
Since then, I have used p5 to aid in visualization of numerous
projects, such as testing pathfinding algorithms.
</p>
<figure>
<img src="https://i.imgur.com/5hZExiT.gif"/>
<figcaption>An example of a p5.js project</figcaption>
</figure>
<p>
Through this, I learned the basics of HTML and CSS. Since then, I've
kept mostly to the JavaScript side (through Node.js), but I have
created fairly basic websites simply out of necessity- an example
being my most recent, <a href="https://camero2734.github.io/iitschedulegen/"
title="IIT Schedule Generator webpage">a schedule generator for IIT
students</a>.
</p>
<figure>
<img src="https://i.imgur.com/HHkrjSy.png"/>
<figcaption>IIT Schedule Generator</figcaption>
</figure>
<h2>Class Goals + The Future</h2>
<p>
Although I have tinkered around with web development in the past,
there is still so much more for me to learn. Thus far in the class,
I have already learned many things I didn't know before; my goal for
this class is to take as much away as I can in the area of design
principles, such as typography, mobile-first design, and good
practices in the realm of CSS.
</p>
<p>
As I continue my college career after this class, I know I will
still be designing web pages, whether for personal projects, school
projects, or professional ones. My future goal as it relates to this
class is to continue using <em>standards-based</em> web design in my
projects, rather than sloppy, meandering code that merely "gets the
job done".
</p>
<footer>
Created by Cameron Haley for COM 330: Standards-Based Web Design
</footer>
</article>
</body>
</html>