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

Commit

Permalink
Added content to /www
Browse files Browse the repository at this point in the history
  • Loading branch information
srinidhi-temkar authored Oct 8, 2019
1 parent 7c9a4bd commit 5449a53
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
34 changes: 34 additions & 0 deletions www/index.html
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>
2 changes: 2 additions & 0 deletions www/script.js
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";

0 comments on commit 5449a53

Please sign in to comment.