diff --git a/router/src/app/about/about.component.html b/router/src/app/about/about.component.html index 17e2a33..7d9d60b 100644 --- a/router/src/app/about/about.component.html +++ b/router/src/app/about/about.component.html @@ -1,3 +1,5 @@ -

- about works! -

+

This is the About Section of the Site

+

Early Life

+

Just a kid growing up rough on the streets. Hustlin' code for ca$h

+

Career

+

Now I'm makin' it raaaiiiiiinnnn!!!

diff --git a/router/src/app/links/links.component.html b/router/src/app/links/links.component.html index 893026c..44260db 100644 --- a/router/src/app/links/links.component.html +++ b/router/src/app/links/links.component.html @@ -1,3 +1,15 @@ -

- links works! -

+

This is the Links Section of the Site

+ diff --git a/router/src/app/resume/resume.component.html b/router/src/app/resume/resume.component.html index 3156770..1c3aedd 100644 --- a/router/src/app/resume/resume.component.html +++ b/router/src/app/resume/resume.component.html @@ -1,3 +1,21 @@ -

- resume works! -

+

Resume

+ diff --git a/routing.md b/routing.md index 3951cf2..8477304 100644 --- a/routing.md +++ b/routing.md @@ -5,6 +5,7 @@ 1. Create a new angular app 1. Clean up app HTML 1. Create About, Links, and Resume components +1. Edit the HTML for the About, Links, and Resume components ## Create a new angular app @@ -40,3 +41,61 @@ ng generate component about ng generate component links ng generate component resume ``` + +## Edit the HTML for the About, Links, and Resume components + +Edit `src/app/about/about.component.html`: + +```html +

This is the About Section of the Site

+

Early Life

+

Just a kid growing up rough on the streets. Hustlin' code for ca$h

+

Career

+

Now I'm makin' it raaaiiiiiinnnn!!!

+``` + +Edit `src/app/links/links.component.html`: + +```html +

This is the Links Section of the Site

+ +``` + +Edit `src/app/resume/resume.component.html`: + +```html +

Resume

+ +```