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

my portfolio #74

Open
wants to merge 1 commit 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
14 changes: 14 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"python.testing.pytestArgs": [
"pages"
],
"python.testing.unittestEnabled": true,
"python.testing.pytestEnabled": false,
"python.testing.unittestArgs": [
"-v",
"-s",
"./pages",
"-p",
"*test*.py"
]
}
51 changes: 51 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="en">
<head>
<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>Adah's Personal Portfolio</title>
<link href="styles/style.css" rel="stylesheet">
</head>

<body>

<div class="container">
<div>
<header class="site-header">



<nav class="nav"></nav>


<div class="name">
<h1><em>Adah Hailemariam</em></h1>
</div>

<div>
<h2>
<nav class="nav">
<a href="index.html" class="brand">Home</a>
<a href="pages/about.html" class="brand">About</a>
<a href="pages/portfolio.html" class="brand">Portfolio</a>
</nav>
</h2>
</div>


</header>
</div>

<section>
<p class="intro">Hi, my name is Adah Hailemaraim. If you'd like to learn more about me, you can do so on the about me page. If you'd like to see some of my work, you can head over to my portfolio page! If you like what you see, feel free to contact me!</p>
</section>
</div>





</body>

</html>
19 changes: 18 additions & 1 deletion pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,24 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>

<header><em>Adah Hailemariam</em></header>

<h1>A Little Bit About Me</h1>

<p>
I love to code. hahah
</p>

<body>

<header>
<nav>
<ul>
<li>About</li>
<li><a href="../index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
</ul>
</nav>
</header>
</body>
</html>
12 changes: 0 additions & 12 deletions pages/index.html

This file was deleted.

20 changes: 19 additions & 1 deletion pages/portfolio.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,24 @@
<title>Document</title>
</head>
<body>


<header>Adah Hailemariam
<h1>
Some Projects I've Worked On
</h1>
</header>

<a href="https://github.com/Aghaile">My Github!</a>


<header>
<nav>
<ul>
<li>Portfolio</li>
<li><a href="../index.html">Home</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</header>
</body>
</html>
43 changes: 43 additions & 0 deletions styles/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
body {
font-family: sans-serif;
background-color: #009e9e;
}

h1 {
text-decoration: underline;
text-align: center;
}

p {
line-height: 150%;
color: darkslategrey;
}



.name{
font-family:Arial, Helvetica, sans-serif;
}

.container {
width: 60vw;
height: 100vh;

display: grid;
grid-template: 15% auto 20% / 1fr 3fr;
}

.intro{
font-size: 400%;
grid-row: auto / span 2;
display: flex;
}

.site-header {
display: flex;
grid-column: auto / span 2;
}

.nav {
grid-row: auto / span 2;
}