-
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
5ef074a
commit 936c336
Showing
4 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
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,43 @@ | ||
<!DOCTYPE html> | ||
|
||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="./styles.css"> | ||
<meta charset="UTF-8"> | ||
<title>Sebi</title> | ||
</head> | ||
|
||
<body> | ||
|
||
<h1 id="top-text">Hello World</h1> | ||
<p>Dieser Text ist hier nur als Beispiel.</p> | ||
|
||
<h2> <a href="pages/about.html"> About </a> </h2> | ||
|
||
<p class="main-text">Er zeigt, dass ich hier Abschnitte machen kann.</p> | ||
<p><strong>Ich kann auch fetten Text schreiben.</strong></p> | ||
<b>Filme</b>,die <i>ich<i> mag: | ||
<ul> | ||
<li>Rocky</li> | ||
<li>Rocky3</li> | ||
<li>Rocky2</li><link rel="styles" href="styles.css"> | ||
|
||
</ul> | ||
<p>Meine <strong>Liebligsfilme</strong>:<p> | ||
<ol> | ||
<li>Rocky4</li> | ||
<li><a href="https://www.theodinproject.com/about" target="_blank" rel="noopener noreferrer"> Rocky1 </a> </li> | ||
<li><a href = "https://youtu.be/btPJPFnesV4?feature=shared" target="_blank" rel="noopener noreferrer">Rocky3</a></li> | ||
<li>Rocky2</li> | ||
|
||
</ol> | ||
<!-- 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> | ||
|
||
</body> | ||
<!-- Kommentar im Code --> | ||
</html> | ||
|
||
|
||
|
||
|
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,13 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<link rel="stylesheet" href="../styles.css"> | ||
<meta charset="UTF-8"> | ||
<title>David</title> | ||
</head> | ||
|
||
<body> | ||
<p> <h1 class="main-text">About</h1> </p> | ||
<img src="../images/dog.jpg" alt="Hundebild, das ich vom theodinproject Kurs habe" height="500" width="300"> | ||
</body> | ||
</html> |
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,24 @@ | ||
|
||
|
||
img { | ||
height: auto; | ||
width: 20%; | ||
|
||
} | ||
|
||
.main-text { | ||
color: red; | ||
|
||
} | ||
|
||
div { | ||
font-weight: 900; | ||
} | ||
|
||
#top-text { | ||
background-color: green; | ||
} | ||
|
||
body { | ||
background-color:aquamarine; | ||
} |