Georgia State University offers CII training courses in varying computer programs and programming techniques. Last Thursday, February 4th, I attended the HTML & CSS 1: Getting Started class. Having no prior html experience, the class was incredibly informative and encouraging. It was so incredible to type information and see it appear as a website. It is the most basic of websites and html texts, but it was a huge step for me and I look forward to making more!
Note: The media selected for the lesson was chosen by the instructor and is not a reflection of me.
Below is the html document I made, a link to the site from that document and a screenshot of the class particulars.
HTML Document
<!DOCTYPE html>
<html>
<head>
<title>My First Website</title>
</head>
<body>
<header>
<h1>Hello World</h1>
</header>
<img src=”thumbs-up.jpg” alt=”Thumbs Up”>
<!~~ this is how you can comment on things in code but it will not be shown in website, maybe use this for things you don’t know if you want yet or not? ~~>
<video src=”http://www.quirksmode.org/html5/videos/big_buck_bunny.mp4″ controls>
This is a video chosen by the instructor in class. Hmmm. This text will only show up if video won’t load.
</video>
<audio src=”http://hpr.dogphilosophy.net/test/opus.opus” controls></audio>
<footer>
<h2>I did it! <hr> Oh yeah!<br> Oh yeah!</h2>
</footer>
<a href=”http://google.com”>Click for Google</a>
<form action=”#”>
<label for=”input”>Favorite Animal</label>
<input type=”text” mazlength=”15″ id=”input”>
<input type=”submit” value=”Submit”>
</form>
</body>
</html>
Site Link
Class Particulars