Jump to content

Morning all (Well at least in the uk) 

 

I suck at HTML Coding its unreal xD 

I have made a basic template for what my pages need to look like on my website

 

I have made a design on power point for a page on html website but I am struggling to make it in HTML

 

I am using brackets to code.

 

Could I send someone the powerpoint to run it through with me?  

Link to comment
https://linustechtips.com/topic/706144-html-coding/
Share on other sites

Link to post
Share on other sites

Are you also delving into CSS? If you are struggling, maybe a pre-designed HTML template to edit may help, unless it is an assignment not for personal use.

PC Specs

i7 6700

Asus H110-PLUS

ASUS STRIX 1070 8GB OC

EVGA G2 550W PSU

3TB HD & 255GB SSD

CiT Galaxy Evolution

 

Upgrades

EVGA G2 550W PSU

Asus Strix GTX 1070

NZXT S340 ELITE BLACK

Link to comment
https://linustechtips.com/topic/706144-html-coding/#findComment-9021474
Share on other sites

Link to post
Share on other sites

Just now, Protex said:

Are you also delving into CSS? If you are struggling, maybe a pre-designed HTML template to edit may help, unless it is an assignment not for personal use.

Its for an assignment for college. We are using HTML/CSS/JavaScript.

 

Our college tutor has let us use templates xD 

Link to comment
https://linustechtips.com/topic/706144-html-coding/#findComment-9021479
Share on other sites

Link to post
Share on other sites

 

1 minute ago, GeorgeKellow said:

Its for an assignment for college. We are using HTML/CSS/JavaScript.

 

Our college tutor has let us use templates xD 

http://www.free-css.com/free-css-templates These most likely won't have Javascript, although have all the CSS and HTML you need, and if you know your way around CSS / HTML, it is easy to edit, especially in brackets with the live preview. Best of luck!

PC Specs

i7 6700

Asus H110-PLUS

ASUS STRIX 1070 8GB OC

EVGA G2 550W PSU

3TB HD & 255GB SSD

CiT Galaxy Evolution

 

Upgrades

EVGA G2 550W PSU

Asus Strix GTX 1070

NZXT S340 ELITE BLACK

Link to comment
https://linustechtips.com/topic/706144-html-coding/#findComment-9021487
Share on other sites

Link to post
Share on other sites

Just now, Protex said:

 

http://www.free-css.com/free-css-templates These most likely won't have Javascript, although have all the CSS and HTML you need, and if you know your way around CSS / HTML, it is easy to edit, especially in brackets with the live preview. Best of luck!

Can I pm you to show you the work I have so far to see if its right? 

Link to comment
https://linustechtips.com/topic/706144-html-coding/#findComment-9021489
Share on other sites

Link to post
Share on other sites

Could you post the design so we can see what it looks like? 

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to comment
https://linustechtips.com/topic/706144-html-coding/#findComment-9021493
Share on other sites

Link to post
Share on other sites

Just now, GeorgeKellow said:

Its a powerpoint slide 

Then take a screenshot and upload it here.

                     ¸„»°'´¸„»°'´ Vorticalbox `'°«„¸`'°«„¸
`'°«„¸¸„»°'´¸„»°'´`'°«„¸Scientia Potentia est  ¸„»°'´`'°«„¸`'°«„¸¸„»°'´

Link to comment
https://linustechtips.com/topic/706144-html-coding/#findComment-9021498
Share on other sites

Link to post
Share on other sites

1 minute ago, Organized said:

Clock thing: absolute or fixed positioning may be the best here

Back to homepage: same thing as the clock

Breads: floating DIVs with 33% width

 

Google list for you:

  • css position absolute
  • css position fixed
  • css float

I've got the clock and the back to homepage sorted now. Its just the Bread 1-3 with pictures and captions I need 

Link to comment
https://linustechtips.com/topic/706144-html-coding/#findComment-9021517
Share on other sites

Link to post
Share on other sites

Then google for "css float" and look up some examples. Floating makes DIVs (I hope you know what a DIV is, otherwise google it) "float", so they can align next to each other which they normally don't do.

 

<div style="float: left; width: 33%;">First block</div>
<div style="float: left; width: 33%;">Second block</div>
<div style="float: left; width: 33%;">Third block</div>
<div style="clear: both;"></div><!-- This one is important! Google for it aswell -->

You will then place the images and text inside the DIVs.

Link to comment
https://linustechtips.com/topic/706144-html-coding/#findComment-9021528
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

×