-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f3439b0
commit ec0ed0c
Showing
4 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="styles/styles9.css"> | ||
</head> | ||
<body> | ||
<img src="images/w09_ice_img.jpg" alt="a bridge"> | ||
<div class = "blue">3 weeks ago</div> | ||
<div class = "bold"> Post Three</div> | ||
<div class = "text">This would be some text to go here and tell you about this awesome article that they should definitely read. This would be some text to go here and tell you about this awesome article that they should definitely read. This | ||
would be some text to go here.</div> | ||
|
||
<div class = "contain"> | ||
<div class="item1">5<sup>m</sup><br> READ</div> | ||
<div class="item2">2031<br> VIEWS </div> | ||
<div class="item3">15<br> COMMENTS </div> | ||
</div> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
img{width: 33%; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
div{background-color: white; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
width: 33%; | ||
text-align: center;} | ||
|
||
body { | ||
background-color: black;} | ||
|
||
.blue{color: blue;} | ||
.bold{font-size: 3em; | ||
font-weight: bold;} | ||
.text{font-size: 1.5em; | ||
color: gray;} | ||
|
||
.contain{display: grid; | ||
grid-template-columns: repeat(3, 1fr); | ||
background-color: lightblue;} | ||
|
||
.item1{grid-template-columns: 1; | ||
border-right: 5px solid #ddd; | ||
background-color: lightblue;} | ||
.item2{grid-template-columns: 2; | ||
border-right: 5px solid #ddd; | ||
background-color: lightblue;} | ||
.item3{grid-template-columns: 3; | ||
background-color: lightblue;} |