Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions review_673.md
Original file line number Diff line number Diff line change
@@ -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
<a href="../Sam's Page/CSInMedicine.html"></a>
```

Instead use `./` single dot operator which returns the current directory

```html
<a href="../Sam's Page/CSInMedicine.html"></a>
```