Skip to content

Commit

Permalink
testing, testing, passing ice
Browse files Browse the repository at this point in the history
  • Loading branch information
Artemis-Fowl-2nd committed Jun 21, 2024
1 parent f3439b0 commit ec0ed0c
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
Binary file modified .DS_Store
Binary file not shown.
22 changes: 22 additions & 0 deletions ice/ice9.html
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>
Binary file added ice/images/w09_ice_img.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
34 changes: 34 additions & 0 deletions ice/styles/styles9.css
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;}

0 comments on commit ec0ed0c

Please sign in to comment.