-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cheetahs - Personal Portfolio - Melissa Pena #99
base: master
Are you sure you want to change the base?
Changes from all commits
777a9bc
ecd293b
76946b8
43fe495
985cced
7982bca
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"liveServer.settings.port": 5501 | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,62 @@ | |
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>About me</title> | ||
</head> | ||
<body> | ||
|
||
<div class="container"> | ||
<header> | ||
<h1>My life </h1> | ||
<nav> | ||
<ul> | ||
<div class="box"> | ||
<div><li><a class="btn" href="/pages/about.html">About me</a></li></div> | ||
<div><li><a class="btn" href="/pages/portfolio.html">Portfolio</a></li></div> | ||
<div><li><a class="btn" href="/pages/index.html">Home</a></li></div> | ||
Comment on lines
+17
to
+19
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Careful with your file paths! The This comment applies to the images as well, none of them show up when the page is opened. |
||
</div> | ||
</ul> | ||
</nav> | ||
</header> | ||
|
||
<main> | ||
<section> | ||
<h2>My life in Colombia</h2> | ||
<p> | ||
I was raised and born in Medellin, Colombia one of the best cities I have seen. I grew up being independent, but also very close to my family. | ||
I spent most of my time going to the gym and riding my motorcycle. | ||
I have been always very curios about life, and love learning new things every day. | ||
</p> | ||
<img class="about" alt="Colombia" src="/images/Family.png"/> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It would be better if the alt text is more descriptive. Screen readers use the alt text to tell people who are blind what is in the picture. Just hearing "Colombia" does not really explain to the blind user what is in the picture. |
||
</section> | ||
<section> | ||
<h2>My career as a civil engineer</h2> | ||
<p> I studied Civil engineer in colombia in one of the best public Universities in the country. | ||
I had the opportunity to be part of this amazing institution that opened doors for my professional development. | ||
I worked as a project engineer for 2 years before I moved to the USA. Once here, I kept working as a project engineer/assistent of project manager. | ||
I was involved in big projects such as the new campus of Microsoft and the new Google's building in Kirkland. | ||
</p> | ||
<img class="about" alt="project engineer" src="/images/PE.jpg"/> | ||
</section> | ||
<section> | ||
<h2>software developer </h2> | ||
<p> | ||
I decided to take another direction with my professional development, and I found out about Ada developers Academy. | ||
I've been part of this community since September, and has been the most challenging and exciting phase of my life. | ||
I have also met people that have helped growing in this new field. | ||
</p> | ||
<img class="about" alt="Ada" src="/images/ada.jpg"/> | ||
</section> | ||
</main> | ||
</div> | ||
<footer> | ||
<ul> | ||
<div class="box"> | ||
<li><a href="https://www.linkedin.com/in/melissapenar" target="blank">Visit my Linkedin</a></li> | ||
<li><a href="https://github.com/melipena" target="blank">Visit my Github</a></li> | ||
</div> | ||
</ul> | ||
copyright 2002 <a href="/pages/index.html">Melissa Pena.</a> All rights reserved. | ||
</footer> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,67 @@ | |
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<title>Portafoliot</title> | ||
</head> | ||
<body> | ||
|
||
<header> | ||
<h1>My projects</h1> | ||
<nav> | ||
<ul> | ||
<div class="box"> | ||
<div><li><a class="btn" href="/pages/about.html">About me</a></li></div> | ||
<div><li><a class="btn" href="/pages/portfolio.html">Portfolio</a></li></div> | ||
<div><li><a class="btn" href="/pages/index.html">Home</a></li></div> | ||
</div> | ||
</ul> | ||
</nav> | ||
</header> | ||
<main> | ||
<h2>Viewing Party</h2> | ||
<section class="port"> | ||
<img alt="Data Estructure" src="/images/data structure.png"/> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Spaces in path names will cause errors. |
||
<div> | ||
<p> | ||
First project as a student of software developer. I reinforced my knowledge in lists, dictionaries, nested loops and nested data structures. | ||
Others skills used in this project were debugging and reading/completing tests to see what is expected of our program. | ||
</p> | ||
<a href="https://github.com/melipena/viewing-party" target="blank">Visit viewing-party project</a> | ||
</div> | ||
</section> | ||
|
||
<h2>Swap Meet</h2> | ||
<section class="port"> | ||
<img alt="Data Estructure" src="/images/OOP.png"/> | ||
<div> | ||
<p> | ||
Object Oriented programing project. I acquired the skills to develop an entire program using the principles of OOP. | ||
Implementing instance methods that interact with other instances and objects. Applying inheritance. | ||
</p> | ||
<a href="https://github.com/melipena/swap-meet" target="blank">Visit Swap-Meet project</a> | ||
</div> | ||
</section> | ||
|
||
<h2>Task List API</h2> | ||
<section class="port"> | ||
<img alt="Data Estructure" src="/imageS/API.png"/> | ||
<div> | ||
<p>API design using the client-server model, request-response cycle and conventional RESTful routes. | ||
Working with Flask to ready query parameters to create behaviors, apply python to make request to call an API inside of an API. | ||
Using online resources to understand external API. | ||
</p> | ||
<a href="https://github.com/melipena/task-list-api" target="blank">Visit Task-List-API project</a> | ||
</div> | ||
</section> | ||
</main> | ||
<footer> | ||
<ul> | ||
<div class="box"> | ||
<li><a href="https://www.linkedin.com/in/melissapenar" target="blank">Visit my Linkedin</a></li> | ||
<li><a href="https://github.com/melipena" target="blank">Visit my Github</a></li> | ||
</div> | ||
</ul> | ||
copyright 2002 <a href="/pages/index.html">Melissa Pena.</a> All rights reserved. | ||
</footer> | ||
</body> | ||
</html> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
body{ | ||
background-color:lavender; | ||
color: black; | ||
font-family: Arial; | ||
font-size: x-large; | ||
margin-left:3rem ; | ||
margin-right:3rem; | ||
} | ||
|
||
footer{ | ||
font-size: medium; | ||
text-align: center; | ||
margin-bottom: 3rem; | ||
margin-top: 3rem; | ||
|
||
} | ||
|
||
header{ | ||
text-align: center; | ||
font-size: medium; | ||
background-color:; | ||
} | ||
|
||
h1{ | ||
background-image: linear-gradient(to left, #553c9a, #b393d3); | ||
background-clip: text; | ||
font-size:xx-large; | ||
} | ||
|
||
a{ | ||
color: blue; | ||
} | ||
|
||
ul{ | ||
list-style-type: none; | ||
font-weight: bold; | ||
} | ||
|
||
img{ | ||
width: 700px; | ||
border-radius: 10px; | ||
display: block; | ||
margin-left: 3rem; | ||
margin-right: 3rem; | ||
} | ||
|
||
a.btn{ | ||
text-decoration: none; | ||
color: #FFFFE3; | ||
background: #1348DA; | ||
padding: 0 1rem; | ||
height: 2rem; | ||
display: inline-flex; | ||
border-radius: 1rem; | ||
align-items: center; | ||
|
||
} | ||
|
||
.box{ | ||
display: flex; | ||
justify-content: space-evenly; | ||
} | ||
|
||
a:hover{ | ||
color: black; | ||
} | ||
|
||
img.profile{ | ||
width: 400px; | ||
border-radius: 50%; | ||
margin-inline-end: 4rem; | ||
margin-bottom: 3rem; | ||
|
||
} | ||
|
||
img.about{ | ||
width: 500px; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
main#index{ | ||
display: flex; | ||
margin-right: 3rem; | ||
} | ||
|
||
section.port{ | ||
display: Flex; | ||
|
||
} | ||
|
||
.container{ | ||
display: grid; | ||
grid: gap 10px; | ||
grid-template-columns: 500px 500px 200px; | ||
grid-template-areas: | ||
"header header header" | ||
"nav main main" | ||
"footer footer footer"; | ||
} | ||
|
||
header.container{ | ||
grid-column: header; | ||
} | ||
nav.container{ | ||
grid-area: nav; | ||
|
||
} | ||
main.container{ | ||
grid-area: main; | ||
|
||
} | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
<div>
element cannot be a child of the<ul>
tag. Remember to run your HTML through the HTML validator!