-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
90 lines (88 loc) · 3.09 KB
/
about.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
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 charset="UTF-8" />
<title>Angel de la Torre</title>
<link
rel="shortcut icon"
href="assets/images/favicon.ico"
type="image/x-icon"
/>
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/fonts.css" />
<link rel="stylesheet" href="assets/css/about-style.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="assets/javascript/app.js"></script>
</head>
<body>
<div class="container">
<div class="row header">
<div class="logo-container">
<img src="assets/images/logo_Letter.png" alt="Angel Logo" />
<ul class="hover-fly-text hidden">
<li>n</li>
<li>g</li>
<li>e</li>
<li>l</li>
<li> </li>
<li>d</li>
<li>e</li>
<li> </li>
<li>l</li>
<li>a</li>
<li> </li>
<li>T</li>
<li>o</li>
<li>r</li>
<li>r</li>
<li>e</li>
</ul>
</div>
<nav class="nav-container">
<ul class="nav-list">
<li class="link-container">
<a class="active-page" href="about.html">About</a>
</li>
<li class="link-container">
<a class="inactive-page" href="portfolio.html">Portfolio</a>
</li>
<li class="link-container">
<a class="inactive-page" href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
<div class="main-content">
<div class="sub-container">
<div id="row1">
<p>
I am a highly motivated and curious individual who follows the
philosophy of Kaizen I aim to constantly improve and learn.
Whether it is hard technical skills, or soft skills, I love
learning new things and applying them effectively.
</p>
<img src="assets/images/AboutMePhoto.png" alt="Me.png" />
</div>
<div id="row2">
<img src="assets/images/TakuOutDoor.jpg" alt="Taku.png" />
<p>
I graduated-Fall 2019-from Cal Poly SLO with a BS in Liberal Arts
and Engineering (LAES). LAES is an interdisciplinary major
combining an engineering concentration with a liberal arts
concentration.I combined Computer Science with Psychology to focus
user-centered interfaces and design. Now I am learning more about
web development so I can become a full-time Web Developer.
</p>
</div>
<div id="row3">
<p>
On my spare time I am either outdoors with my dog Taku or I am
training as Muay Thai practioner/fighter and hope to one day fight
in the Rajadamnern Boxing Stadium, Thailand.
</p>
</div>
</div>
</div>
</div>
</body>
</html>