Jump to content

Heres some of my HTML coding

aidenrelkoff

So i have been doing some html coding as a side hobby for a while now.

 

This page was made for my teacher in my html coding class. disregard the content just look at the format of the page and such.

 

im currently working on the buttons near the top. so for now i just linked them to my YouTube site, and the one im affiliated with.

 

Also for some reason youtube videos wont load on the page. even though i copied and pasted the embed code from the youtube video. I tried like 5 videos....

 

Some of the pictures are linked, but the .gif and sound file are in the folder.

 

http://www.mediafire.com/download/qy2bixkdiwbuohc/gpu-HTML.zip

My Car: http://linustechtips.com/main/topic/274320-the-long-awaited-car-thread/?p=4442206


CPU: i5 4590 |Motherboard: ASRock H97M PRO4|Memory: Corsair Vengance 8gbs|Storage: WD Caviar Blue 1TB|GPU: ZOTAC GTX 760 2gb|PSU: Thermaltech TR2 500W|Monitors: LG24M35 24" & Dual 19"|Mouse:Razer DeathAdder 2013 with SteelSeries Qck mini|Keyboard: Ducky DK2087 Zero MX Red|Headset: HyperX Cloud|Cooling: Corsair 120mm blue LED, Lepa vortex 120mm, stock 120mm|Case:Enermax Ostrog Blue Windowed


 

Link to comment
Share on other sites

Link to post
Share on other sites

So i have been doing some html coding as a side hobby for a while now.

 

This page was made for my teacher in my html coding class. disregard the content just look at the format of the page and such.

 

im currently working on the buttons near the top. so for now i just linked them to my YouTube site, and the one im affiliated with.

 

Also for some reason youtube videos wont load on the page. even though i copied and pasted the embed code from the youtube video. I tried like 5 videos....

 

Some of the pictures are linked, but the .gif and sound file are in the folder.

 

http://www.mediafire.com/download/qy2bixkdiwbuohc/gpu-HTML.zip

I'm pretty sure you have to have your site online in order for YouTube videos to work..

Look into Google Sites or some place else to host your site for free (just a place to test stuff)

 

I'll download it and have a look at it

"We're all in this together, might as well be friends" Tom, Toonami.

 

mini eLiXiVy: my open source 65% mechanical PCB, a build log, PCB anatomy and discussing open source licenses: https://linustechtips.com/topic/1366493-elixivy-a-65-mechanical-keyboard-build-log-pcb-anatomy-and-how-i-open-sourced-this-project/

 

mini_cardboard: a 4% keyboard build log and how keyboards workhttps://linustechtips.com/topic/1328547-mini_cardboard-a-4-keyboard-build-log-and-how-keyboards-work/

Link to comment
Share on other sites

Link to post
Share on other sites

So i have been doing some html coding as a side hobby for a while now.

 

This page was made for my teacher in my html coding class. disregard the content just look at the format of the page and such.

 

im currently working on the buttons near the top. so for now i just linked them to my YouTube site, and the one im affiliated with.

 

Also for some reason youtube videos wont load on the page. even though i copied and pasted the embed code from the youtube video. I tried like 5 videos....

 

Some of the pictures are linked, but the .gif and sound file are in the folder.

 

http://www.mediafire.com/download/qy2bixkdiwbuohc/gpu-HTML.zip

 

Just looked really quickly, heres the reason the youtube video does not work:

 

You are using "//" in your url, which will return http:// or https:// (Protocol used) if you are using them on a webserver. But in our case, this will return file:// because we are using the page locally! Just replace the // with http:// or https://.

 

Other things:

You are using HTML5, so please use the tag <header> , <main> and <footer> instead of <div id="header">...

 

Also, use an external CSS stylesheet, helps a lot for clean code. And never write something twice: All your <table style="width: 40%"> just simply put it into CSS 

table{   width: 40%;}

Maybe something in general: Keep you code cleaner, it's extremely hard to read ;)

Business Management Student @ University St. Gallen (Switzerland)

HomeServer: i7 4930k - GTX 1070ti - ASUS Rampage IV Gene - 32Gb Ram

Laptop: MacBook Pro Retina 15" 2018

Operating Systems (Virtualised using VMware): Windows Pro 10, Cent OS 7

Occupation: Software Engineer

Link to comment
Share on other sites

Link to post
Share on other sites

I noticed some things in your code, and I hope you don't mind me fixing them for you :)

 

I'll upload the files when I'm done :)

 

Update: Indenting your code, it's a bit hard to read, my rule has always been, "New tag, new line." That way you can see where each part starts and ends :)

Specs: CPU: AMD FX 6300 Motherboard: Gigabyte 970A DS3P RAM: HyperX Fury 16GB 1866MHz GPU: MSI R9 270 OC edition Case: Sharkoon VS3-S SSD: Samsung 840 EVO 120GB HDD: 1TB Caviar Blue PSU: Corsair CX500W

*If I say something that seems offensive, please don't take it seriously, it was most likely meant as a joke/sarcastically*

 

 

Link to comment
Share on other sites

Link to post
Share on other sites

I noticed some things in your code, and I hope you don't mind me fixing them for you :)

 

I'll upload the files when I'm done :)

 

Update: Indenting your code, it's a bit hard to read, my rule has always been, "New tag, new line." That way you can see where each part starts and ends :)

yeah i try to do that as much as i can. for example if its a title i put all the needed code on the one line

 

"<font size=5><h1><font color="green">Audio</h1></font>"

My Car: http://linustechtips.com/main/topic/274320-the-long-awaited-car-thread/?p=4442206


CPU: i5 4590 |Motherboard: ASRock H97M PRO4|Memory: Corsair Vengance 8gbs|Storage: WD Caviar Blue 1TB|GPU: ZOTAC GTX 760 2gb|PSU: Thermaltech TR2 500W|Monitors: LG24M35 24" & Dual 19"|Mouse:Razer DeathAdder 2013 with SteelSeries Qck mini|Keyboard: Ducky DK2087 Zero MX Red|Headset: HyperX Cloud|Cooling: Corsair 120mm blue LED, Lepa vortex 120mm, stock 120mm|Case:Enermax Ostrog Blue Windowed


 

Link to comment
Share on other sites

Link to post
Share on other sites

Just looked really quickly, heres the reason the youtube video does not work:

 

You are using "//" in your url, which will return http:// or https:// (Protocol used) if you are using them on a webserver. But in our case, this will return file:// because we are using the page locally! Just replace the // with http:// or https://.

 

Other things:

You are using HTML5, so please use the tag <header> , <main> and <footer> instead of <div id="header">...

 

Also, use an external CSS stylesheet, helps a lot for clean code. And never write something twice: All your <table style="width: 40%"> just simply put it into CSS 

table{   width: 40%;}

Maybe something in general: Keep you code cleaner, it's extremely hard to read ;)

 

 

I noticed some things in your code, and I hope you don't mind me fixing them for you :)

 

I'll upload the files when I'm done :)

 

Update: Indenting your code, it's a bit hard to read, my rule has always been, "New tag, new line." That way you can see where each part starts and ends :)

 

so when im indenting to make it look more clean, what should i indent? 

My Car: http://linustechtips.com/main/topic/274320-the-long-awaited-car-thread/?p=4442206


CPU: i5 4590 |Motherboard: ASRock H97M PRO4|Memory: Corsair Vengance 8gbs|Storage: WD Caviar Blue 1TB|GPU: ZOTAC GTX 760 2gb|PSU: Thermaltech TR2 500W|Monitors: LG24M35 24" & Dual 19"|Mouse:Razer DeathAdder 2013 with SteelSeries Qck mini|Keyboard: Ducky DK2087 Zero MX Red|Headset: HyperX Cloud|Cooling: Corsair 120mm blue LED, Lepa vortex 120mm, stock 120mm|Case:Enermax Ostrog Blue Windowed


 

Link to comment
Share on other sites

Link to post
Share on other sites

so when im indenting to make it look more clean, what should i indent? 

I like to indent nearly everything, like this:

 

e2d10b2493.png

 

but it's personal preference, just have everything really readable :)

Specs: CPU: AMD FX 6300 Motherboard: Gigabyte 970A DS3P RAM: HyperX Fury 16GB 1866MHz GPU: MSI R9 270 OC edition Case: Sharkoon VS3-S SSD: Samsung 840 EVO 120GB HDD: 1TB Caviar Blue PSU: Corsair CX500W

*If I say something that seems offensive, please don't take it seriously, it was most likely meant as a joke/sarcastically*

 

 

Link to comment
Share on other sites

Link to post
Share on other sites

Pro-tip, HTML is not coding.

/me moves along...

The way I understood it was that it was code, just not a programming language

Specs: CPU: AMD FX 6300 Motherboard: Gigabyte 970A DS3P RAM: HyperX Fury 16GB 1866MHz GPU: MSI R9 270 OC edition Case: Sharkoon VS3-S SSD: Samsung 840 EVO 120GB HDD: 1TB Caviar Blue PSU: Corsair CX500W

*If I say something that seems offensive, please don't take it seriously, it was most likely meant as a joke/sarcastically*

 

 

Link to comment
Share on other sites

Link to post
Share on other sites

If you're coding, but especially if you're sharing it like this, start using a version control system like Github or Bitbucket.

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×