-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpersonal.html
More file actions
85 lines (83 loc) · 2.98 KB
/
personal.html
File metadata and controls
85 lines (83 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Personal Page</title>
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<nav>
<div class="dlogo">
<span class="logo">B</span>
<span class="under">Ben</span>
</div>
<ul>
<li>
<div class="icon">
<img src="images/home.png" alt="home icon">
</div>
<a href="index.html">Home</a>
</li>
<li>
<div class="icon">
<img src="images/user.png" alt="personal icon">
</div>
<a href="personal.html">About Me</a>
</li>
<li>
<div class="icon">
<img src="images/social.png" alt="skill icon">
</div>
<a href="skills.html">Skills</a>
</li>
<li>
<div class="icon">
<img src="images/start-up.png" alt="">
</div>
<a href="projects.html">Projects</a>
</li>
<li class="copy">
<a href="credit.html">©</a>
<a href="credit.html">Credit</a>
</li>
<!--© is option g--->
</ul>
</nav>
<article class="about">
<h1>About Me</h1>
<section class="love">
<div class="loveimg">
<img src="images/computer.png" alt="a computer">
<img src="images/love.png" alt="a heart inside a text bubble">
</div>
<div>
<h2>Programming love</h2>
<p>I prefer to do things that require logic and when I can predict what will happen.
I also love computers and the internet in general.
I essentially grew up around computers wondering what it takes to make them work.
</p>
</div>
</section>
<section class="life">
<img src="images/me.jpeg" alt="a picture of Ben Long">
<div>
<h2>Personal Life</h2>
<p>I never saw myself as an interesting person. I've never done anything incredibly crazy or achieved something no one else has.
I hope to change that.
</p>
</section>
<section class="background">
<img src="https://31baa9204011a4b7373d-4b45c627b478904b4d98bc32b4be9291.ssl.cf2.rackcdn.com/uploaded/t/0e6869761_1514989569_tsct-logo1.png" alt="Thaddeus Stevens College of Technology logo">
<div class="">
<h2>Background in Tech</h2>
<p>I took a class in high school that introduced me to the idea of programming.
From this, I then decided to pursue this love further by applying to Thaddeus Stevens College.
This is where I am currently at.
The courses so far have been fun.
After graduating I will be looking around for employment and based on the statistics of the school I should have no problem finding it.
</p>
</div>
</section>
</article>
</body>
</html>