-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (51 loc) · 2.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,intitial-scale=1.0">
<link rel="stylesheet" type="text/css" href="styles.css">
<title>Portfolio</title>
</head>
<body>
<div class="nav">
<ul class="nav-list">
<li><a class="nav-item h1" href="index.html">Home</a></li>
<li><a class="nav-item h1 a" href="asg2/index.html"> Assignment #2 </a></li>
<li><a class="nav-item h1 a" href="assignment3/index.html"> Assignment #3 </a></li>
<li><a class="nav-item h1 a" href="assignment4/index.html"> Assignment #4 </a></li>
<li><a class="nav-item h1 a" href="assignment5/index.html"> Assignment #5 </a></li>
<li><a class="nav-item h1 a" href="assignment6/index.html"> Assignment #6 </a></li>
<li><a class="nav-item h1 a" href="contact.html">Contact Form</a></li>
</ul>
</div>
<div class="container">
<div class="intro">
<div class="textbox">
<div id="welcome" class="neon">
<h1>I<span style="color: #EE82EE">'</span>m<br>Brian Rios<span style="color: #EE82EE">.</span></h1>
</div>
<div id="role">
<h3>/Software Developer</h3>
</div>
</div>
</div> <!-- end of intro -->
<div class="description">
<h1>Description</h1>
<p>Hey there! On this website you can check out my latest projects. Use the Navigation Bar above to select a project. If you have any comments or just want to reach out to me, my contact information is below. I am graduating soon and looking for a full-time Software Developer position.</p>
<h1>Background</h1>
<p>
I am a Hispanic first-generation student at New York University. My major is Computer Science and my minor is Mathematics.
</p>
<p>
My skills: Java, Python, C, HTML, CSS, Node.js, .NET, Git
</p>
<h1>Contact Information</h1>
<p>Email: [email protected]</p>
<p>Linked In: www.linkedin.com/in/brian-rios-46ab8b1a4</p>
</div>
</div>
<footer style="color: white">
© 2021 BRIAN RIOS
</footer>
</body>
</html>