Tuesday, October 16, 2018

Creating my HTML website


While creating my HTML website I didn’t have to much trouble. I had previously created one my sophomore year of high school as an introduction to my computer science class. After that I took AP computer science my junior year and AP programming my senior year so doing things like this are basic for me. All I did for my website was give it a title, which was simple, then I used hexadecimal to add a background color. After that I did a marquee because I didn’t know that was an option and I thought it was cool. I also embedded an image and a short video because I was curious to see if I still remembered how to do it. Other than that, I don’t have much more to talk about. I was able to make the notepad into an html website by simply adding “.html” to the file name. I also knew I had to start the page with “<html>” and end it with “</html>” so it would be recognized as such. I used “<br>” to make text appear on the next line similar to pressing the “enter” key. Obviously “<body>” is used to place text, images and videos inside. I plan on majoring in computer science so its nice to have this class to get information on a lot of technological history and future. I did enjoy making the website because it kind of gave me a flashback to when I did it in high school, even though it took me about 5 minutes to make.

<html>
<head>
<title> TINST 207 Jeff Schultz</title>
  </head>
<body bgcolor="e244e6">
<p>Making an HTML website is really easy ;)</p>
<br> I made an HTML website my sophmore year of highschool in my computer science class so I already have Experience with this.
<marquee>WOW look im moving</marquee>
<iframe width="560" height="315" src="https://www.youtube.com/embed/Kfv1WafiYzk" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
<img width="500" height="500" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg5ChsJOoqazbgdY0fES24CttzFTnaFFI897MGuDThAxchHdEU7Ul3i1l0AUI1JJnBEv7vL2f5YUDLenJHOXTrsNyDvnY0JTdb_IqZfxgzd-IqO06MBNAHyGFh_-wu_spIBP7vI0YbDGXg/s1600/FEARED+OR+LOVED.jpg"></img>
  </body>

</html>

No comments:

Post a Comment