We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
0 parents commit af5942bCopy full SHA for af5942b
README.md
@@ -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
@@ -0,0 +1,8 @@
+body {
+background-color: lightblue;
+}
+h1 {
6
+color: navy;
7
+margin-left: 20px;
8
index.html
@@ -0,0 +1,13 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>Hello World!</title>
+<link rel="stylesheet" href="bluestyle.css">
+</head>
+<body>
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