-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (96 loc) · 6.02 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!-- Name: Zailyn Tamayo
Date: June 2017
Title: My Webiste -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Zailyn's Website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon"
type="image/png"
href="media/favicon.png" />
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- Link to CSS sheet -->
<link rel="stylesheet" type="text/css" href="main.css">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<!-- Header and Navigation -->
<nav class="navbar">
<div class="container-fluid">
<!-- Navigation Bar -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Website Title -->
<a class="navbar-brand text-center" href="index.html">Zailyn's Website</a>
</div>
<!-- Small social media icons -->
<ul class="nav navbar navbar-nav navbar-left pull-left">
<li id="socmed"><a href="https://twitter.com/InsidiousZ88" target="_blank" class="fa fa-twitter fa-lg"></a></li>
<li id="socmed"><a href="https://github.com/ztamayo/" target="_blank" class="fa fa-github fa-lg"></a></li>
<li id="socmed"><a href="http://www.linkedin.com/in/zailyn-tamayo" target="_blank" class="fa fa-linkedin fa-lg"></a></li>
</ul>
<!-- Page Navigation -->
<div class="collapse navbar-collapse navbar-right" id="navbar-collapse-1">
<ul class="nav navbar-nav text-center">
<li><a href="index.html"><b>Home</b></a></li>
<li><a href="projects.html"><b>Projects</b></a></li>
<li><a href="media/Resume.pdf" target="_blank"><b>CV/Resume</b></a></li>
</ul>
</div>
</div>
</nav>
<!-- Main Body of Page -->
<div class="jumbotron text-center">
<h1><b>Welcome to my website!</b></h1>
<!-- Profile Picture -->
<img id="mypic" src="media/Me.jpg" />
<br />
<div class="container">
<!-- About Me -->
<p id="main">Hello, thanks for visiting my site! My name is Zailyn Tamayo. I live in New Haven, CT
with my dog Logan. I am the Systems Architect & Engineer for the N3 Division at the Department of
Psychiatry at Yale University School of Medicine. I possess a Master of Science in Computer Science with a specialization
in Software Engineering and enjoy learning new things. I love technology and enjoy working in higher education.
My current focus is to work on obtaining <u>RHCSA</u> certification and to practice system administration
tasks. Also, I am trying to work on <u>front end web development</u> and to practice more <u>Python</u>.
Please check out my <a id="inline-link" href="projects.html">Projects</a> page to see what I am working on.</p>
<p id="main">Some of my interests include: music (vinyl, in particular), video games, reading, learning and anime. I love music and
listen to it all the time. Video games and watching anime are my main forms of entertainment; I enjoy the
accomplishment of completing a game and also enjoy good storylines and plots. I consider myself to be a
life-long learner and I am always seeking opportunities to learn new things. In my free time I listen to
music and practice coding, or I watch lectures and/or take online courses. I also like to visit museums and libraries
whenever I can; I strongly believe in supporting the arts, culture and education. In the near future I plan to add
a blog to this site so that I can write more about my interests and about the things I'm working on.</p>
<p id="main">Thank you for taking the time to read through my site. Please feel free to look around and check
out my social media links.</p>
<!-- Quote -->
<p id="quote"><i>"The unexamined life is not worth living."</i> -- Socrates</p>
</div>
</div>
<!-- Footer -->
<footer class="container-fluid text-center">
<div>
<!-- Add social media icons -->
<a href="https://twitter.com/InsidiousZ88" target="_blank" class="fa fa-twitter fa-2x"></a>
<a href="https://github.com/ztamayo/" target="_blank" class="fa fa-github fa-2x"></a>
<a href="http://www.linkedin.com/in/zailyn-tamayo" target="_blank" class="fa fa-linkedin fa-2x"></a>
<br />
<!-- Email Me -->
<br><a href="mailto:[email protected]?subject=From Website"><b><u>Email Me</u></b></a>
<br />
<br><p>Copyright © 2017 by Zailyn Tamayo</p>
</div>
</footer>
</body>
</html>