Skip to content
Open
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# file: ~/.gitignore_global
.DS_Store
.idea
32 changes: 24 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,25 @@
<html>
<head>
<title>Title</title>
</head>
<body>
<h1>Headline</h1>
<p>Some text</p>
</body>
</html>
<head>
<title>
Ich bin die Index.html
</title>

<link rel="stylesheet" href="style.css">

</head>

<body class="git">
<div class="box1">
<h2>Box1</h2>
<p>
ich bin der content
</p>
</div>
<div class="box2">
<h2>Box2</h2>
<img src="287.jpeg" height="138" width="200"/>
</div>

</body>

</html>
17 changes: 17 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.git {
background-color: red;
}

.box1 {
background-color: green;
color: #757575;
}

.box2 {

background-color: blue;
}

.box1, .box2 {
width: 50%;
}