-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_HTML.html
More file actions
106 lines (101 loc) · 3.46 KB
/
Copy pathindex_HTML.html
File metadata and controls
106 lines (101 loc) · 3.46 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=, initial-scale=1.0" />
<title>David Armijo - Home</title>
<script
src="https://kit.fontawesome.com/c2bdbf7f1e.js"
crossorigin="anonymous"
></script>
</head>
<body class="HomePage">
<nav class="fixed-top-bar">
<ul class="navbar">
<li class="nav-item">
<a class="nav-link" href="index_HTML.html">
<span>Home</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="portfolio_HTML.html">
<span>Projects</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="qualifications_HTML.html">
<span>Skills</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="service_HTML.html">
<span>Service</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="semiconductor-ai_HTML.html">
<span>Semiconductor + AI</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="javascript:;" onclick="" title="Change Theme">
<span><i class="fa fa-paint-brush" aria-hidden="true"></i></span>
</a>
</li>
</ul>
</nav>
<header>
<h1>David Ariel Armijo</h1>
</header>
<section class="content">
<article class="profile-container">
<img
src="pictures/david-prof-headshot-2-min.png"
alt="Professional Picture of David Armijo"
/>
<div class="profile-info">
<h2 class="profile-subtext">David Armijo</h2>
<h3 class="profile-subtext">Computer Engineer Student</h3>
<h2 class="profile-subtext">Texas A&M University</h2>
<ul class="network-icons">
<li>
<a href="https://www.linkedin.com/in/david-armijo-b5a705229/"
><i class="fa fa-linkedin-square" aria-hidden="false"></i></a
>
</li>
<li><a href="https://github.com/smartapplez"><i class="fa fa-github" aria-hidden="true"></i></a></li>
<!-- Add GMAIL here-->
</ul>
</div>
</article>
<article class="description-side">
<h1 class="AboutMe">About Me:</h1>
<p>
Resourceful and passionate Computer Engineering student at Texas A&M
University with an upcoming Bachelor's Degree. My main interests
include Computer Architecture, ASIC design and verification. I thrive
in project-driven environments where I am able to collaborate with
others and prototype new ideas. Outside of professional environment, I
enjoy reading, playing games, and doing other hobby projects relating
to computers (both software and hardware design)
</p>
<h3>Interests:</h3>
<ul>
<li>Computer Building</li>
<li>Arch Linux btw</li>
<li>Gaming</li>
<li>Reading Light Novels :D</li>
<li>
To my favorite
<a href="https://people.tamu.edu/~tamulohit/index.html">person</a>
^-^
</li>
</ul>
</article>
</section>
<script src="functions.js"></script>
</body>
</html>
<!-- <hr>: Makes a horizontal line
<div>: Divides stuff by section
<span>: could be useful in CSS stuff such as text hovering for example-->