Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 869 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 869 Bytes

dom-manipulation

Counter and Timer

In this example you will be creating a simple timer and counter application using DOM manipulation techniques. The structure here represents the folder structure that will be used in the application.

├── index.html
├── readme.md
├── src
│   ├── app.js
│   ├── counter
│   │   ├── counter.js
│   │   └── counterReadMe.md
│   └── timer
│       ├── timer.js
│       └── timerReadMe.md
└── style
    ├── counter.css
    ├── style.css
    └── timer.css

'app.js' is the main application file that will work on displaying the contents on index.html file. 'counter.js' ➕ will build a counter component and timer.js ⌛ will build a timer component