-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.html
More file actions
22 lines (22 loc) · 794 Bytes
/
hello.html
File metadata and controls
22 lines (22 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<!--This is the git practice file-->
<html lang="en">
<head>
<title>Hello</title>
<style>
h1 {
color: blue;
}
</style>
</head>
<body>
<h1>This is a merge conflict test<h1>
<h1>Welcome to my website!! Checking out branching</h1>
<h2>Not sure why git -am is not working correctly</h2>
<h3>This is a change made on github</h3>
<h1>I am only going to add this to the master branch</h1>
Hello, world!
<h1>I am slowly (not really, I'll do it quickly. I'm only messing around to experiment) going to add this to the style branch!!</h1>
<h1>one final little change to test git after what github tells me has been 13 months!!!</h1>
</body>
</html>