Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AlanLienhard authored May 24, 2024
1 parent 936c336 commit c5fe381
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
5 changes: 5 additions & 0 deletions html-boilerplate/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ <h2> <a href="pages/about.html"> About </a> </h2>
<!-- Die erste Liste war eine ohne Reihenfolge, die zweite war mit einer Reihenfolge -->
<p> <div>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempora nam, voluptatem corporis eveniet ipsa est earum doloremque aliquid cumque iure incidunt suscipit doloribus facilis nulla odit dolore eaque? Placeat, quasi.<div></p>


<div class="block"> Block Box</div>
<div class="inline">Inline Box</div>
<div class="inline-block">Inline-block Box</div>

</body>
<!-- Kommentar im Code -->
</html>
Expand Down
28 changes: 27 additions & 1 deletion html-boilerplate/styles.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@

* {
outline: 2px solid red;
}

img {
height: auto;
Expand All @@ -21,4 +23,28 @@ div {

body {
background-color:aquamarine;
}

h1 {
padding: 80px;

margin: 90px;
}

.block {
background-color: red;
width: 100px;
height: 100px;
}
.inline {
background-color: blue;
width: 100px;
height: 100px;
display: inline;
}
.inline-block {
background-color: blue;
width: 100px;
height: 100px;
display: inline-block;
}

0 comments on commit c5fe381

Please sign in to comment.