This repository was archived by the owner on Sep 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7c9a4bd
commit 5449a53
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<!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> | ||
|
||
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 | ||
|
||
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
var a = document.getElementByTagName("body")[0]; | ||
a.style.background-color = "aquamarine"; |