Skip to content

Commit

Permalink
restructure project
Browse files Browse the repository at this point in the history
  • Loading branch information
DzakaAngela committed Mar 21, 2022
1 parent eaadfad commit d740976
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 59 deletions.
61 changes: 2 additions & 59 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,64 +2,7 @@
<html>
<head>
<title>project work</title>

<style>
body {
margin: 0;
padding: 0;

}
header{
background-image: url("pictures/background.jpg");
color: white;
padding: 50px;
text-align: center;
font-size: 22px;
}


.grid {
display: grid;
grid-template-columns: auto auto auto;
font-size:20px;
background-color:black;
gap: 10px;
padding: 50px;
}
.grid > div{
background-color: aqua;
text-align: center;
border: 1px solid black;
font-size: 10px;
}

.grid-container1 {
text-align: center;
background-color: whitesmoke;
padding: 40px;
}

span{
font-size: 22px;
text-align: center;
padding: 40px;
}

.me {
display: grid;
grid-template-columns: auto auto;
color: white;

}
footer{
display: grid;
grid-template-columns: auto auto;
background-color: black;
color: white;
padding: 30px;
}
</style>

<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
Expand All @@ -78,7 +21,7 @@ <h2>Web & Application Development</h2>
</div>
</div>

<div class="grid">
<div class="grid" style="font-size: 30px;">
<div style="background-color: white; text-align: center;" >
<img src="pictures/web.jpg" alt=""><br>
<h3>Web & Application Development</h3><br>
Expand Down
54 changes: 54 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
body {
margin: 0;
padding: 0;

}
header{
background-image: url("pictures/background.jpg");
color: white;
padding: 50px;
text-align: center;
font-size: 22px;
}


.grid {
display: grid;
grid-template-columns: auto auto auto;
font-size:40px;
background-color:black;
gap: 10px;
padding: 50px;
}
.grid > div{
background-color: aqua;
text-align: center;
border: 1px solid black;
font-size: 10px;
}

.grid-container1 {
text-align: center;
background-color: whitesmoke;
padding: 40px;
}

span{
font-size: 22px;
text-align: center;
padding: 40px;
}

.me {
display: grid;
grid-template-columns: auto auto;
color: white;

}
footer{
display: grid;
grid-template-columns: auto auto;
background-color: black;
color: white;
padding: 30px;
}

0 comments on commit d740976

Please sign in to comment.