-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (75 loc) · 3.83 KB
/
index.html
File metadata and controls
75 lines (75 loc) · 3.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>About me</title>
<meta charset="UTF-8">
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="shortcut icon" type="image/x-icon" href="images/icon/favicon.ico">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<link type="text/css" rel="stylesheet" href="style.css">
</head>
<body>
<div id="content">
<header>
<section class="container-fluid">
<div class="row">
<div class="col-md-1 col-sm-auto"></div>
<div class="col-md-4 col-sm-12" id="myname">
Eric Mercado
</div>
<div class="col-md-1 col-sm-auto"></div>
<nav class="col-md-6 col-sm-12">
<div class="container">
<div class="row">
<div class="navbutton col" id="aboutButton">
<a href="index.html">About</a>
</div>
<div class="navbutton col" id="portButton">
<a href="portfolio.html">Portfolio</a>
</div>
<div class="navbutton col" id="contactButton">
<a href="contact.html">Contact</a>
</div>
</div>
</div>
</nav>
</div>
</section>
</header>
<div class="container" id="bodycontent">
<div class="col-md-8 col-xs-12">
<section id="mainContent">
<h1>About Me</h1>
<p>
<img class="headshot" src="assets/images/snapchatboi.png" alt="Photo of big schmert"> Hello! My name is Eric Mercado. I am 21 years old, and am currently enrolled in the UT Coding Bootcamp. I was previously at Austin Community College, but I was not ambitious in my class at all, as I felt I was just merely attending the classes more so than trying to excell in them.
</p>
<p>
My interests involve Martial Arts, and video games. I had taken Tae Kwon Do before but after middle school, martial arts just faded from my identity until I was 18.
</p>
</section>
</div>
<section class="col-md-4 col-xs-12" id="sideBar">
<div class="row">
<h2 class="col-12">Connect With Me</h2>
</div>
<div class="row">
<a href="https://github.com/ericmercado" class="socialIcon col-4"> <img src="assets/images/github.png" alt="GitHub">
</a>
<a id="middleIcon" href="https://www.linkedin.com/in/eric-mercado-9b6084156/" class="socialIcon col-4"><img src="assets/images/linkedin.png" alt="LinkedIn">
</a>
<a href="https://stackoverflow.com/users/9206661/eric-mercado" class="socialIcon col-4"><img src="assets/images/stack.png" alt="Stack Overflow">
</a>
</div>
</section>
<!--Pretty sure this is an easy fix, but it really frustrated me to the point where I don't care anymore-->
</div>
<div class="push"></div>
</div>
<footer>
<p id="copyright">
© Copyright 2018 Eric Mercado
</p>
</footer>
</body>
</html>