# Code Review: Texterly Ai
### _Code by: Tony Liao ,_
### _Reviewer: Felicity Evans_
## What you did well
- unique design / content
- clear commented code
- consistent names across css and js
- using css grid
## Questions
- Would appreciate any feedback on how I organized this JS
group event listeners together e.g.
document.addEventListener("click", function(event){
if (event.target.className == "this-is-the-class"){
...
}
}
- is there a better way to clear the form?
document.getElementById("form").reset()
- Just wondering where I can improve upon my responsive design and HTML/CSS organization
- use <link> instead of font import
- mobile first and media query for desktop
- avoid ids for styling: #word-count
## What could be improved?
- check for empty to and from fields