Skip to content
This repository was archived by the owner on Mar 16, 2026. It is now read-only.
Merged
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
5 changes: 4 additions & 1 deletion CSS/position/position.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
<h1>My Awesome Website</h1>
<div class="bluebox"></div>
<p>Hello World! I'm learning how to create my own website using HTML and CSS!</p>
<div class="greenbox"></div>
<div class="greenbox">

</div>
<p class="inProgress">This website is in progress. Please come back later!</p>
</body>
</html>
9 changes: 6 additions & 3 deletions CSS/position/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ p {
background-color: green;
width: 650px;
height: 120px;
position: relative;
top: 50px;
left: 120px;
}
.inProgress {
position: absolute;
top: 300px;
right: 0;
background-color: aqua;
}