Skip to content

Commit bc77f82

Browse files
committed
first release
0 parents  commit bc77f82

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# hello-world
2+
Hello World repository for Git tutorial
3+
This is an example repository for the Git tutoial on https://www.w3schools.com
4+
5+
This repository is built step by step in the tutorial.

bluestyle.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
body {
2+
background-color: lightblue;
3+
}
4+
5+
h1 {
6+
color: navy;
7+
margin-left: 20px;
8+
}

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Hello World!</title>
5+
<link rel="stylesheet" href="bluestyle.css">
6+
</head>
7+
<body>
8+
9+
<h1>Hello world!</h1>
10+
<p>This is the first file in my new Git Repo.</p>
11+
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)