Skip to content
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
Binary file added assets/photos/market.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
90 changes: 90 additions & 0 deletions assets/stylesheets/contact.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/*General Styling*/
@import url('https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded');
@import url('https://fonts.googleapis.com/css?family=Pontano+Sans');

/*Header Styling*/
#main-body{
margin-top: 120px;
margin-left: 0px;
margin-right: 0px;
padding-left: 0px;
padding-right:0px;
}

body a{
color: #B9C9D9;
text-decoration: none;
text-shadow: 1px 1px 2px gray, 0 0 1em #3a7bd5, 0 0 0.2em teal;

}

header nav > ul{
display: inline-block;
}

aside{
vertical-align: top;
width: 20%;
display: inline-block;
}
aside a{
color:gray;
font-size: 25px;
text-shadow: 1px 1px 2px gray, 0 0 1em #3a7bd5, 0 0 0.2em teal;

}

aside [class*=icono-] {
color: gray;
}


#text-body >article{

width: 100%;
display: inline-block;
border-radius: 10px;
vertical-align: top;
}

#text-body article:nth-child(odd){
background: rgba(157,194,213,.3);
}


#text-body a{
color:white;
text-decoration: none;
}
#text-body h2{
font-weight: 100;
text-align: center;
font-family:'Stint Ultra Expanded', cursive;
}


#text-body{
width: 69%;
display: inline-block;
}

.contact_left{
display:inline-block;
width: 79%;
}
.contact_right{
display:inline-block;
width: 10%;
vertical-align: top;}

.contact_left img{
float:left;
border-radius: 20px;
margin-top: 9px;
width: 60%;
}

nav.footer{
position:absolute;
bottom: 100px;
}
Empty file.
87 changes: 87 additions & 0 deletions assets/stylesheets/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
@import url('https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded');
@import url('https://fonts.googleapis.com/css?family=Pontano+Sans');

/*General Styling*/
body *{
margin: 0px;
padding: 0px;
border-width: 0px;
}

body{
font-family:'Pontano Sans',Helvetica,sans-serif;

background: #3a7bd5; /* fallback for old browsers */
background: -webkit-linear-gradient(to left, #3a7bd5 , #3a6073); /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to left, #3a7bd5 , #3a6073); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

body a{
color: #B9C9D9;
text-decoration: none;
}

/*Header Styling*/
/*Header animation*/
@keyframes fade-in {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}

header h2{
display:inline-block;
font-family: 'Stint Ultra Expanded',Helvetica, serif;
width: 50%;
color:gray;
font-style: italic;
font-size:30px;
animation-name: fade-in;
animation-duration: 10s;
animation-delay: -1s;
font-size: 50px;
font-family: "Stint Ultra Expanded", cursive;
text-shadow: 1px 1px 2px gray, 0 0 1em #3a7bd5, 0 0 0.2em teal;

}

header nav:first-of-type{
display: inline-block;
width: 39%;
text-align: right;

}
header nav > ul{
display: inline-block;
}

nav li {
display: inline-block;
padding: .1em;
}
/*Splash Section Styling*/
#splash {
height: 200px;
vertical-align: text-bottom;
text-align: center;
padding-top: 20%;
margin-top: 10%;
margin-left: 0px
margin-bottom: 30%;
background-image: url('/Users/tehutgetahun/ada/que/week6/hw/Static-Site/assets/photos/market.JPG');

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You've got an absolute path here, which includes your username! This means that your image won't load on anyone else's machine.

It's always better to use relative paths for this sort of thing. In this case it would be something like assets/photos/market.JPG (note there's no leading /)

opacity: .5;
background-size:cover;
background-repeat: no-repeat;
background-position: center;
}



nav.footer{
position:absolute;
bottom: 100px;
}
58 changes: 58 additions & 0 deletions assets/stylesheets/work.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
/*General Styling*/
@import url('https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded');
@import url('https://fonts.googleapis.com/css?family=Pontano+Sans');

/*Header Styling*/
#main-body{
margin-top: 120px;
}
header nav > ul{
display: inline-block;

}

aside{
vertical-align: top;
width: 30%;
display: inline-block;
}
aside [class*=icono-] {
color: gray;
}
aside a{
color:gray;
font-size: 25px;
text-shadow: 1px 1px 2px gray, 0 0 1em #3a7bd5, 0 0 0.2em teal;

}

#text-body >article{

width: 90%;
display: inline-block;
border-radius: 10px;
vertical-align: top;
margin-bottom: 8%;
}
#text-body a{ color:white;text-decoration: none}
#text-body h2{
font-weight: 100;
text-align: center;
font-family:'Stint Ultra Expanded', cursive;}

#text-body article:nth-child(odd){
background: rgba(157,194,213,.3);
}
#text-body article:nth-child(even){
background: rgba(220,184,188,.3);
}
#text-body{
width: 65%;
display: inline-block;
}
/*Splash Section Styling*/

nav.footer{
position:absolute;
bottom: 100px;
}
66 changes: 66 additions & 0 deletions blog.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tehut Getahun</title>
<link rel="stylesheet" href="assets/stylesheets/styles.css">
<link rel="stylesheet" href="assets/stylesheets/work.css">
<link rel="stylesheet" href="http://icono-49d6.kxcdn.com/icono.min.css">
<link href="https://fonts.googleapis.com/css?family=Pontano+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded" rel="stylesheet">

</head>
<body>
<header>
<h2>Tehut Getahun</h2>

</header

<main>
<section id="main-body">
<aside>
<ul>
<li ><a href="index.html"> <i class="icono-home"> </i> Home </a></li>
<li><a href="work.html"> <i class="icono-terminal"> </i> My Work</a> </li>
<li><a href="blog.html"> <i class="icono-document"> </i> Blog </a> </li>
<li><a href="contact.html"> <i class="icono-mail"> </i> Contact </a> </li>
</ul>
</aside>

<section id="text-body">
<article>
<a href="https://www.instagram.com/p/BRxOlMsg-8t/"><h2>Gentle Beginnings</h2></a>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut
</p>
</article>

<article>
<a href="https://www.instagram.com/p/BRzOJXgAwQx/"><h2>Smiling Sammies</h2></a>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut </p>
</article>

<article>
<a href="https://www.instagram.com/p/BRzN9zhgMdD/"><h2>Waiting for Mom</h2></a>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut </p>
</article>
</section>
</main>

<footer>
<section>
<nav class= "footer">
<ul>
<li ><a href="index.html"> Home </a></li>
<li><a href="work.html"> My Work</a> </li>
<li><a href="blog.html"> Blog </a> </li>
<li><a href="contact.html"> Contact </a> </li>
</ul>
</nav>
</section>
</footer>

</body>
</html>
65 changes: 65 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Tehut Getahun</title>
<link rel="stylesheet" href="assets/stylesheets/styles.css">
<link rel="stylesheet" href="assets/stylesheets/contact.css">
<link rel="stylesheet" href="http://icono-49d6.kxcdn.com/icono.min.css">
<link href="https://fonts.googleapis.com/css?family=Pontano+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Stint+Ultra+Expanded" rel="stylesheet">
</head>
<body>
<header>
<h2>Tehut Getahun</h2>

</header

<main>
<section id="main-body">
<aside>
<ul>
<li ><a href="index.html"> <i class="icono-home" alt="house icon"> </i> Home </a></li>
<li><a href="work.html"> <i class="icono-terminal"alt="laptop icon"> </i> My Work</a> </li>
<li><a href="blog.html"> <i class="icono-document" alt="document icon" > </i> Blog </a> </li>
<li><a href="contact.html"> <i class="icono-mail" alt="envelope icon"> </i> Contact </a> </li>
</ul>
</aside>

<section id="text-body">
<article>
<section class="contact_right">
<!-- <h4>Tehut Getahun</h4><p> -->
<a href="http://facebook.com"><img alt="facebook logo" src= "/Users/tehutgetahun/ada/que/week6/hw/build_your_first_website/images/facebook-wrap.png"></a>
<a href="http://twtter.com"><img alt="facebook logo" src= "/Users/tehutgetahun/ada/que/week6/hw/build_your_first_website/images/twitter-wrap.png"></a>
</section>
<section class="contact_left">
<img alt="a young woman, Tehut Getahun" src="/Users/tehutgetahun/ada/que/week6/hw/build_your_first_website/images/Tehut2.jpg">

<p>Tehut Getahun is a Montessori kid who likes to say that she grew up babysitting, grew while a substitute teacher and grew into leadership as a Montessori teacher and administrator.</p>

<p>After graduating from the University of Washington's Foster School of Business Tehut pursued a joint M.Ed and AMI Montessori Teaching Certificate at Loyola Maryland and the Montessori Institute Northwest. Tehut currently serves at the Business Manager
& Developmental Director for Wedgwood Montessori Schools, whose two NE Seattle campuses have been the testing ground for WeLivePlayfully's pilot year.</p>
<p> Tehut is currently a student of Software Development at Ada Developer's Academy.</p>
</section>
</section>

</article>

</main>

<footer>
<section>
<nav class= "footer">
<ul>
<li ><a href="index.html"> Home </a></li>
<li><a href="work.html"> My Work</a> </li>
<li><a href="blog.html"> Blog </a> </li>
<li><a href="contact.html"> Contact </a> </li>
</ul>
</nav>
</section>
</footer>

</body>
</html>
Loading