This week I worked on defining my final project idea and started to getting used to the documentation process.
I found this week to be a bit intemidating as software / web design in general
and writing in particular is not my strong suit. Nothing to gain by waiting so I dove
right in.
## Research
Decided to start off with MKDocs as having that in place would make documentation of
everything else easier.
"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
## Installing MKDocs
> "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
Started off trying to install MKDocs. I linked off the mkdocs website into the " getting started " page
Tried installing Python from the website www.python.org but once I got back into the CMD that did not seem to work

After trying different commands in the CMD terminal the windows app store python came up!!! and after installing the app from there things seems to get back on track
After what I thought was success I seem to hit a wall to get more progress....

## Visual Studio
Next we needed to get IDE in place.
This was very straight forward off the Visual Studio website
https://visualstudio.microsoft.com/vs/

## Mattermost
Got the link to set up Matter most. Followed direction for Windows install
<p><ahref="https://vimeo.com/10048961">Sound Waves</a> from <ahref="https://vimeo.com/radarboy">George Gally (Radarboy)</a> on <ahref="https://vimeo.com">Vimeo</a>.</p>
## Uploading my first website
### From Youtube
So I have been diligently in MKDocs and ignoring the parts of the documentation that
talk about "build" command....i have been using ```mkdocs serve``` to start a local site
by <ahref="https://sketchfab.com/francisbitontistudio?utm_medium=embed&utm_source=website&utm_campaign=share-popup"target="_blank"style="font-weight: bold; color: #1CAAD9;">Francis Bitonti Studio</a>
on <ahref="https://sketchfab.com?utm_medium=embed&utm_source=website&utm_campaign=share-popup"target="_blank"style="font-weight: bold; color: #1CAAD9;">Sketchfab</a>
</p>
</div>

It seems that other folks in my class had a similar issue at the same time and a discussion
on mkdocs vs. html made me realize that I should probably go back and revisit the ```mkdocs build```
command.
## Use HTML
I get a folder named "site" filled with html files of my website.
You may also embed HTML in your markdown files
I quickly drop these files into my "Public folder" of the repository and commeit a push....
<hr/>
Success....kinds of....web site is up but no picture are showing .....

Try having a seperator line
I do some more research and looks like what I thought was the syntaxt for a relative pic link was not
right.
I kept using
``````
<hr/>
but is should be
``````
<tableborder="1">
<thead>
<tr>
<th>ID</th>
<th>First Name</th>
<th>Last Name</th>
</tr>
</thead>
<tbody>
<tr>
<td>235312</td>
<td>John</td>
<td>Doe</td>
</tr>
<tr>
<td>453123</td>
<td>Mark</td>
<td>Jones</td>
</tr>
<tr>
<td>998332</td>
<td>Jonathan</td>
<td>Smith</td>
</tr>
<tr>
<td>345612</td>
<td>Andrew</td>
<td>McArthur</td>
</tr>
<tr>
<td>453123</td>
<td>Adam</td>
<td>Fuller</td>
</tr>
</tbody>
</table>
Qucik correct, new build and upload and we are good to go!!