-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.24 KB
/
Copy pathindex.html
File metadata and controls
43 lines (39 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="description" content="Personal website of Joshua, a MS IT & Management at UT Austin who likes software, hiking, and music.">
<title>Joshua's Personal Website</title>
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div id="header">
<img src="ut-logo.svg" alt="UT Austin Longhorns logo" class="logo">
<h1>Joshua</h1>
<p>MS IT & Management student at UT Austin</p>
</div>
<div class="section">
<h2>About Me</h2>
<p>
Hi! I am a student at UT Austin studying IT and Management.
Right now I am taking Advanced Application Development where I am learning about software engineering
and how to build web applications with HTML, CSS, and React.
</p>
<p>
When I am not doing homework I like lifting, making music and
working on small coding projects.
</p>
</div>
<div class="section">
<h2>Things I Have Worked On</h2>
<ul>
<li>A personal website (this one!) built with plain HTML and CSS</li>
<li>Class projects in Python</li>
</ul>
<p>
You can find more of my code on
<a href="https://github.com/jcodeyh">my GitHub page</a>.
</p>
</div>
</body>
</html>