-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaboutme.html
61 lines (56 loc) · 2.92 KB
/
aboutme.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-179066783-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-179066783-1');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<title>About Me</title>
</head>
<div class="container" id="navibar">
<nav class="navbar navbar-expand-lg sticky-top rounded-pill justify-content-center nav-justified darkLight">
<span class="navbar-brand nav-item">
<a class="nav-link" href="index.html">
<img class="animoji-avatar" src="images/animoji.png" alt="avatar">
</a>
</span>
<span class="nav-item">
<a class="nav-link" href="aboutme.html">About Me</a>
</span>
<span class="nav-item">
<a class="nav-link" href="education.html">Education</a>
</span>
<span class="nav-item">
<a class="nav-link" href="workexperience.html">Work Experience</a>
</span>
</nav>
</div>
<body>
<h1>About Me</h1>
<div class="container">
<img class="bodyImage" src="images/IMG_2486.jpg" alt="portrait of josh">
<p>
Hi! I'm a Nigerian-American student from the DFW area and I've spent most of my life here in Texas. I attend school at Texas Tech University
in Lubbock, TX and it's been a great experience in how much I've been able to learn and grow.
</p>
<p>
When I'm not at my job as a student assistant, I'm usually either playing video games, cruising on my pennyboard, or out trying to get the
perfect picture.
</p>
<h3>On Creating This Website:</h3>
<p> I started working on this website as a project part of CS50 to test my skills in web development and put what I've learned into practice. There's much
more I still need to do on this website such as making it responsive for mobile devices, designing a better template for the content but for now,
this is what I'm currently capable of with Web Design. I plan to also start hosting some of the scripts/tools i write on my github that will be linked
on this website.
</p>
</div>
</body>
</html>