Skip to content

Commit acedb1d

Browse files
committed
Added README and modified all files
Added #165
1 parent f35c341 commit acedb1d

File tree

4 files changed

+39
-6
lines changed

4 files changed

+39
-6
lines changed

Week Day Predictor App/README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<h1>Week Day Predictor App</h1>
2+
3+
<p>A Simple Week Day Predicyor App written in HTML, CSS and JavaScript .</p>
4+
5+
### Use of the Project:
6+
7+
<p>This app displays the current day of the week with quotes . </p>
8+
9+
<h3>Used Technologies</h3>
10+
<ul>
11+
<li>HTML5</li>
12+
<li>CSS3</li>
13+
<li>JavaScript</li>
14+
</ul>
15+
16+
#### Steps to Use:
17+
18+
---
19+
20+
- Download or clone the repository
21+
22+
```
23+
git clone https://github.com/Ayushparikh-code/Web-dev-mini-projects.git
24+
```
25+
26+
- Go to the directory
27+
- Run the index.html file
28+
- Result is here!!!
29+
30+
<h3> Demo </h3>
31+
32+
<a href= "https://sonamgupta136.github.io/sonamgupta136.io/">Demo</a>
33+
34+
<br>
35+
36+

Week Day Predictor App/app.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,4 @@ weekdayDiv.innerHTML = `${nameOfDay}`;
4141

4242
//Display quote
4343
let quoteDiv = document.getElementById('phrase');
44-
quoteDiv.innerHTML = `${quote}`
45-
44+
quoteDiv.innerHTML = `${quote}`

Week Day Predictor App/index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ <h1>Today is:</h1>
2222
<script src="app.js"></script>
2323
</body>
2424

25-
</html>
26-
25+
</html>

Week Day Predictor App/style.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,4 @@ h1 {
3737
color: #0000ff;
3838
font-weight: 800;
3939
margin-left: 170px;
40-
}
41-
40+
}

0 commit comments

Comments
 (0)