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
26 changes: 26 additions & 0 deletions Building Blocks.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title> Blocks Practice </title>

</head>
<link rel= "stylesheet" href="style.css">
<div class= "gray-wrapper">
<div class="green-box"></div>
<div class="blue-box"></div>
<div class="red-box">
<div class="yellow-left"></div>
<div class="yellow-middle"></div>
<div class="yellow-right">
<div class="purple-box">

</div>
</div>
</div>






</html>
80 changes: 80 additions & 0 deletions Portfolio.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
<!DOCTYPE html>
<html>
<title> Portfolio</title>
<link rel="Stylesheet" href="portfolio.css">
<div class="top-box">
<h1> Jayne Doe</h1>
<h2> Masters of Shadow and Internet!</h2>
</div>
<div class="big-box">
<img src="D:\Portfolio\Girl.jpg" alt="Profile Picture">
<div class="about-me">

<h3> About...</h3>
<p> Hello!! I am extremely driven and creative Full Stack developer
who is currently open for front-end or back-end web developer in the Greater Seattle Area.
<br>
I am a recent graduate of Coding Dojo, a coding
school located in Bellevue, WA that teaches 3 full stacks
in three months.
I'm capable of learning new
technologies very quickly, amd am
always looking for
opportunities to further expand my skills
and grow as a developer. </p>
</div>
<div class="left-box">
<h3> LA MODE</h3>
<img src="D:\Portfolio\La Mode.png" alt="image" width="317px">
<p> La MOde is an E commerce website for designed to market various
clothing products. Users are able to view the available garments, select
their desired quantity, and
compile a shopping cart for making a final purchase.
</p>
<div class="middle-box">
<h3> Family Contacts</h3>
<img src="D:\Portfolio\family.png" alt="family picture" width="317px">
<p>Family Contacts is a free application for managing, sharing
and visualizing your family relationships foe both extended and
immediate family. As a essential feature of the project, your login information
determines who you can see and reveals how people are related to you.
</p>

</div>
<div class="right-box">
<h3>fiveEleven</h3>
<img src="D:\Portfolio\3rd image.png" alt="img" width="317px">
<p>Five Eleven is a data visualizing project built on the Python software stack. The application transforms
the developer job-hunt into a more visual, user friendly experience. Based on location,
technology popularity, and the other vast data sets, users may easily visualize the varying
sizes and concentrations of the junior developer job market across the nation.

</p>



</div>





</div>




</div>












</html>
63 changes: 63 additions & 0 deletions portfolio.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
*{
padding: 0px;
margin: 0px;}

.top-box{
background-color: lightgray;
width: 1000px;
}
.big-box{
background-color: rgb(72, 73, 73);
width: 1000px;
height: 1500px;
}
h1{
display: inline-block;
font-family: "Comic Sans MS";
}

h2{
display: block;
float: right;
}
img{
display: inline-block;
float: left;
}


.about-me{
border: solid black;
width: 500px;
height: 200px;
display: inline-block;
background-color: lightgray;
margin-left: 200px;


}
.left-box{
border: solid black;
background-color: lightgrey;
width: 317px;
height: 325px;
display: inline-block;
float: left;
}

.middle-box{
border: solid black;
background-color: lightgrey;
width: 317px;
height: 325px;
display: inline-block;
}

.right-box{
border: solid black;
background-color: lightgrey;
width: 317px;
height: 390px;
display: inline-block;
}

127 changes: 92 additions & 35 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,35 +1,92 @@
/*CSS reset settings here*/
*{
margin: 0px;
padding: 0px;
}
#wrapper{
width: 950px;
background-color: silver;
margin: 0px auto;
}
#header{
min-height: 150px;
background-color: green;
}
#navigation{
min-height: 300px;
width: 200px;
background-color: blue;
}
#main_content{
min-height: 400px;
width: 700px;
background-color: red;
}
.subcontents{
min-height: 200px;
width: 210px;
background-color: yellow;
}
#advertisement{
min-height: 120px;
width: 660px;
background-color: purple;
}

*{outline: 0px dotted white;
margins: 0px;
padding: 0px;}




div.gray-wrapper {
width: 2000px;
height: 800px;
background-color: gray;
padding-top: 50px;
padding-left: 50px;
padding-right: 50px;
}
div.green-box {
width: 1500px;
height: 200px;
background-color: green;
border: solid black;
vertical-align: top;
margin-left: 100px;
margin-right: 50px;
}



div.blue-box {
width: 200px;
height: 500px;
background-color: blue;
border: solid black;
display: inline-block;
margin-top: 50px;
margin-left: 50px;
margin-bottom: 200px;
}

div.red-box{
width: 1000px;
height: 400px;
background-color:red;
border: solid black;
display: inline-block;
margin-top: 50px;
margin-left: 100px;


}

div.yellow-left{
width: 200px;
height: 100px;
background-color:yellow;
border: solid black;
display: inline-block;
margin-top: 10px;
margin-left: 10px;

}


div.yellow-middle{
width: 200px;
height: 100px;
background-color:yellow;
border: solid black;
display: inline-block;
margin-top: 10px;
margin-left: 20px;

}

div.yellow-right{
width: 200px;
height: 100px;
background-color:yellow;
border: solid black;
display: inline-block;
margin-top: 10px;
margin-left: 20px;}

div.purple-box{
width: 500px;
height: 100px;
background-color: purple ;
border: solid black;
margin-top: 200px;
margin-right: 100PX;
}