Skip to content
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

personal portfolio #78

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,25 @@
<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 href = "styles/style.css" rel ="stylesheet"/>
<title>Personal Portfolio</title>
</head>

<body>

<header>

<nav>
<ul>
<li class = "upper-right-nav"> <a href ="index.html"> Home </a></li>
<li class = "upper-right-nav">About</li>
<li class = "upper-right-nav"><a href ="portfolio.html"> Portfolio </a></li>
</ul>
</nav>
<p> I'm a software engineering student at Ada Developers Academy. I'm looking to become a junior developer at one of the big tech firms such as Coinbase.I find the blockchain very interesting. It allows individuals to use a decentralized network to send funds, notes, comments and music playlist. I have high hopes for the future and look forward to engaging with friends in the metaverse while sharing my experience on the blockchain network. Things that I enjoy are ATLA(Avatar the Last Airbender), glass nails, my earring collection, and makeup/skincare. My favorite Avatar is Avatar Kyoshi. </p>
<img src="petals.jpg">
</header>
<footer class = "Footer">
<p>Copyright @2021 | Designed by Edmine Delva</p>
</footer>
</body>
</html>
21 changes: 19 additions & 2 deletions pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,26 @@
<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 href = "styles/style.css" rel ="stylesheet"/>
<title>Personal Portfolio</title>
</head>

<body>

<header>


<nav>
<ul>
<li class = "upper-right-nav"> Home</li>
<li class = "upper-right-nav"> <a href ="about.html"> About </a></li>
<li class = "upper-right-nav"><a href ="portfolio.html"> Portfolio </a></li>
</ul>
</nav>
<h4>Hi, my name is</h4> <h1 class = "my-name"> Edmine Delva</h1>
<img src="petals.jpg">
</header>
<footer class = "Footer">
<p>Copyright @2021 | Designed by Edmine Delva</p>
</footer>
</body>
</html>
Binary file added pages/petals.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
28 changes: 26 additions & 2 deletions pages/portfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,33 @@
<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 href = "styles/style.css" rel ="stylesheet"/>
<title>Personal Portfolio</title>
</head>
<body>

<header>
<nav>
<ul>
<li class = "upper-right-nav"> <a href ="index.html"> Home </a></li>
<li class = "upper-right-nav" ><a href ="about.html"> About </a></li>
<li class = "upper-right-nav" > Portfolio </li>
</ul>
</nav>
</header>
<section >
<h1 class = "NoteWorthy-Projects"> NoteWorthy Projects </h1>
<img alt = ""
<nav >
<a class = "Projects" href = https://github.com/Eatmine/viewing-party > Viewing Party Project</a>
<a class = "Projects"href = https://github.com/Eatmine/adagrams-py> Adagrams Project</a>
<a class = "Projects"href = https://github.com/Eatmine/swap-meet > Swap Meet Project</a>
<a class = "Projects"href = https://github.com/Eatmine/task-list-api> Task List Project</a>

</nav>
<img src="petals.jpg">
</section>
<footer class = "Footer">
<p>Copyright @2021 | Designed by Edmine Delva</p>
</footer>
</body>
</html>
Binary file added pages/sprakle.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions pages/styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
body {
font-family: fantasy;
background-color: papayawhip;

}

li {
list-style: circle;
text-align: left;


}

h1 {
text-align: left;

}

h4{

color: palevioletred
}

ul{
display: flex;
justify-content: right;
}

.Footer{

display: flex;
justify-content: center;
padding: 5px;
background-color: #da45ff2f;
color: #fff;

}

.my-name{
color: palevioletred
}
.NoteWorthy-Projects{

display: flex;
justify-content: center;
padding: 5px;
color: palevioletred

}
.Projects{

display: flex;
justify-content: center;
padding: 5px;
background-color: papayawhip;
color: palevioletred


}

.upper-right-nav{


display: inline-block;
justify-content: right;
padding: 5px;
color: palevioletred
}