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
33 changes: 33 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@


page {
font-size:
color:
font-family:
background-color:#E0E0E0;
text-decoration:

}

.main img {

width: 30%;
}

.header nav {
list-style: none;
float: center;
margin: 0;
margin-right: 5%;
padding: 0;
width: 25%;
}

.bottom nav {
list-style: none;
float: center;
margin: 0;
margin-right: 5%;
padding: 0;
width: 25%;
}
70 changes: 70 additions & 0 deletions starter_code/CSS/main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
body {
background-color: silver;
}

.header {
text-align: center;
font-size:
color:
font-family:
background-color:#E0E0E0;
text-decoration:
}

.main {

height: 300px;
}

.bottom {
width: 100%;
height: 100%;
}

.main p {
text-align: center;
font-size:30px;
color:
font-family:
background-color:#E0E0E0;
text-decoration:
}

.main h2 {
text-align: center;
}

.bottom {
text-align: center;
font-size:


}

.main img {

width: 30%;
}

.header .nav {
list-style: none;
text-align: center;
margin: 0;
margin-right: 5%;
padding: 0;
width: 100%;
}

.header .nav li {

display: inline;
text-color: black;
}

.bottom .nav li {
display: inline;
}

.right {
float: right;
}
51 changes: 51 additions & 0 deletions starter_code/HomeWork1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">
<title>title</title>
<link href="./CSS/main.css" rel="stylesheet">

</head>


<body>

<div class="page">
<div class="header" role="banner">
<ul class="nav" role="navigation">
<li><a href="#">About me</a></li>
<li><a href="#">Portfolio</a></li>
</ul>

<h1>JOE JOHNSON<h1>
<hr>
</div>



<div class="main" role="main">
<img src="images/untitled.png" class="right">
<h2> I ENJOY LIFE AS A<span cLass="blue">DEVELOPER</span>.</h2>
<p>I'm Joe Johnson, a Developer based in NYC. I Have ten years
of experience in the graphic design world, specializing in the
creation of responsive websites.</p>
</div>
<hr>
<div class="bottom" role="main">
<ul class="nav" role="navigation">
<li><a href="#">Face Book</a></li>
<li><a href="#">Instegram</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Linkedin</a></li>
</ul>
</div>

</div>


</body>

</html>
Binary file added starter_code/images/untitled.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.