diff --git a/starwars/src/app/search/search.component.html b/starwars/src/app/search/search.component.html
index cf57b97..5020947 100644
--- a/starwars/src/app/search/search.component.html
+++ b/starwars/src/app/search/search.component.html
@@ -6,6 +6,24 @@
Search Results
- - {{character.name}}
+ -
+
{{character.name}}
+
+ - Birth Year
+ - {{character.birth_year}}
+ - Eye Color
+ - {{character.eye_color}}
+ - Hair Color
+ - {{character.hair_color}}
+ - Gender
+ - {{character.gender}}
+ - Height
+ - {{character.height}}
+ - Mass
+ - {{character.mass}}
+ - Skin Color
+ - {{character.skin_color}}
+
+
diff --git a/use_an_api.md b/use_an_api.md
index 044b69a..5305cce 100644
--- a/use_an_api.md
+++ b/use_an_api.md
@@ -13,6 +13,7 @@
1. Add the ability to make AJAX requests
1. Make an AJAX request
1. Display AJAX results in app
+1. Display more data in the HTML
## Create a new app
@@ -212,3 +213,34 @@ Now add some HTML to `src/app/search/search.component.html` to display the resul
```
You can test this in the app
+
+## Display more data in the HTML
+
+Edit `src/app/search/search.component.html`:
+
+```html
+
+ Search Results
+
+ -
+
{{character.name}}
+
+ - Birth Year
+ - {{character.birth_year}}
+ - Eye Color
+ - {{character.eye_color}}
+ - Hair Color
+ - {{character.hair_color}}
+ - Gender
+ - {{character.gender}}
+ - Height
+ - {{character.height}}
+ - Mass
+ - {{character.mass}}
+ - Skin Color
+ - {{character.skin_color}}
+
+
+
+
+```