diff --git a/review_673.md b/review_673.md
new file mode 100644
index 0000000..9f3672f
--- /dev/null
+++ b/review_673.md
@@ -0,0 +1,29 @@
+# Peer Review
+
+https://speedofred.github.io/
+
+## Summary
+
+- **Interest in Content** - Excellent
+
+- **Consitency and quality of visual presentation** - Good
+
+- **Quality of written presentation** - Sound
+
+- **Validity of HTML** - Very Good
+
+- **Evidence of collaboration** - Perfect
+
+## Issues
+
+When linking pages from the `index.html` file dont use `../` operator as this returns the parent of a directory, if file structure is embedded this doesn't work
+
+```html
+
+```
+
+Instead use `./` single dot operator which returns the current directory
+
+```html
+
+```