Skip to content
This repository was archived by the owner on Sep 2, 2020. It is now read-only.

Fixing first bugs #4

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# qr-challenge-1

### How to Contribute
Head to the issues page to see how you can contribute to this repo.
If you;ve figured out how to fix things here then refer to ```CONTIRBUTING.md``` to get started!

Head to the issues page to see how you can contribute to this repo.
If you;ve figured out how to fix things here then refer to `CONTIRBUTING.md` to get started!

### Winners:
1.(Add Name Here)

1. Miłosz Przybylski
52 changes: 27 additions & 25 deletions www/index.html
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
<!DOCTYPE html>
<html>
<head>
<title>Open Source Software</title>
<style>
#h1
{
color : green;
}
pre
{
font-size: 1.25em;
}
</style>
</head>
<body>
<h1>What is open source software?</h1>
<pre>
<head>
<title>Open Source Software</title>
<style>
h1 {
color: green;
}
pre {
font-size: 1.25em;
}
</style>
</head>
<body>
<h1>What is open source software?</h1>
<pre>

The term "open source" refers to something people can modify and share because its design is publicly accessible.

Open source software is software with source code that anyone can inspect, modify, and enhance.

"Source code" is the part of software that most computer users don't ever see; it's the code computer programmers can
manipulate to change how a piece of software—a "program" or "application"—works. Programmers who have access to a computer

manipulate to change how a piece of software—a "program" or "application"—works. Programmers who have access to a computer

program's source code can improve that program by adding features to it or fixing parts that don't always work correctly.
</pre>
<br/>
Source : <a href:"https://opensource.com/resources/what-open-source">opensource.com</a>
<script src = 'script.js'></script>
</body>
</html>
</pre
>
<br />
Source :
<a href="https://opensource.com/resources/what-open-source"
>opensource.com</a
>
<script src="script.js"></script>
</body>
</html>
4 changes: 2 additions & 2 deletions www/script.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
var a = document.getElementByTagName("body")[0];
a.style.background-color = "aquamarine";
var a = document.getElementsByTagName("body")[0];
a.style.backgroundColor = "aquamarine";