Skip to content

Commit 610e1d0

Browse files
committed
Added Readme.md
Added #165
1 parent 0cf5ffb commit 610e1d0

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

Week Day Predictor App/README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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>

Week Day Predictor App/app.js

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

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

Week Day Predictor App/style.css

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

0 commit comments

Comments
 (0)