Minecraft PC IP: play.cubecraft.net
Status
Not open for further replies.

Lucien

Dedicated Member
May 25, 2016
339
558
173
20
Groningen, the Netherlands.
Hai! Does anyone code with HTML? Because I need help with it.
Like the only thing I can do is this:

<!DOCTYPE html>
<html>
<head>
<title>Hello, this is a test :)</title>
</head>
<body>
<h1>Pizza is my favo food. What is yours?</h1>
<p1>I'm playing on a laptop with 500-800 FPS in Minecraft. Pretty impressive right?</p1>
</body>
</html>



It would look like this:

Pizza is my favo food. What is yours?


I'm playing on a laptop with 500-800 FPS in Minecraft. Pretty impressive right?


--------------------------------------------------------------------------------------------------------------------------


Does anyone who knows the HTML language learn me some? Thank you :)
 
  • Like
Reactions: Mustafa_Gul

TheLucian

Forum Expert
Dec 29, 2015
801
1,878
288
:D
lucianchauvin.com
CSS is where this gets tricky. I'm orettf sure the outcome would be like that. I use this website to check my code/see what it looks like. http://www.littlewebhut.com/
Once you get there click HTML then paste you code in the top box then click the bottom in the middle and it should show a preview of it.
 
  • Like
Reactions: Lucien

PyjamaBanana

Novice Member
Jan 17, 2017
171
145
73
20
Check out CodeCademy to learn some more I know how to code quite well but I can't really help too much I would recommend using dream weaver and customising fonts and making a nice layout. What I'm saying is use Dream Weaver and Learn CSS
 
  • Like
Reactions: Lucien

Max ♠

Forum Expert
Feb 20, 2016
1,420
2,940
344
24
North pole
Hai! Does anyone code with HTML? Because I need help with it.
Like the only thing I can do is this:

<!DOCTYPE html>
<html>
<head>
<title>Hello, this is a test :)</title>
</head>
<body>
<h1>Pizza is my favo food. What is yours?</h1>
<p1>I'm playing on a laptop with 500-800 FPS in Minecraft. Pretty impressive right?</p1>
</body>
</html>



It would look like this:

Pizza is my favo food. What is yours?


I'm playing on a laptop with 500-800 FPS in Minecraft. Pretty impressive right?


--------------------------------------------------------------------------------------------------------------------------


Does anyone who knows the HTML language learn me some? Thank you :)
First off, it's easier to read when you use 2-4 spaces or tab instead of a single space
Code:
<!DOCTYPE html>
<html>
    <head>
        <title>Hey, how ya doin'?</title>
    </head>
    <body>
        <h1>Probably baked potatoes</h1>
        <p1>How does a laptop get that high fps? What kind off graphics card are you using :O</p1>
    </body>
</html>

To learn more HTML: https://www.w3schools.com/html/default.asp
CSS: https://www.w3schools.com/css/default.asp

Pretty well explained & you wont get the feeling they're trying to tell a 3year old how to code

I'd recommend using Notepad++ or Sublime Text Editor to write HTML & CSS:
https://notepad-plus-plus.org/
https://www.sublimetext.com/
You could also use Notepad but it's easier to find little bugs such as forgetting to close a tag using one of these programs

I wouldnt recommend using Google Chrome for testing as it usually takes a while to update even after refreshing, Mozilla Firefox is pretty quick, don't know about other browsers. (for me at least, might be different for you)

CSS is where this gets tricky. I'm orettf sure the outcome would be like that. I use this website to check my code/see what it looks like. http://www.littlewebhut.com/
Once you get there click HTML then paste you code in the top box then click the bottom in the middle and it should show a preview of it.
Just save your code as a .html file and open it using whatever browser you prefer, might not make a huge difference for a little bit of code, but for large amounts it's crappy. (I regularly get about 400 lines of CSS)
 

ItsJustNasty

Member
Apr 10, 2017
1
1
8
Hey! If your new at HTML, here are the basic tips and tricks on html/css/js.

The list is kinda long so I am going to categorize it accordingly.

This is the application. This is my opinion.
HTML

Adobe Dreamweaver (Both CS and CC)

Pros:

In Dreamweaver CC 2017 (Latest), New Code Editor, Developer Workspace, Modern UI, CSS preprocessor support, Real-time browser preview and more

In Dreamweaver CS6, you can create a new HTML, ColdFusion, PHP, CSS, JavaScript, XML, Fluid Grid Layout and more.

Cons:
Money. The application is under adobe, which if you know yet, needs to pay in order to use the application.

Notepad++

Pros:

Can be used as an html editor.

Cons:
Unlike Dreamweaver, notepad++ does not have "auto-correct" and insert an element

There are tons of applications that can be used as HTML Editor. Here are top ten best alternatives to Adobe Dreamweaver .

Everyone have to start somewhere. Here are some website.

W3Schools - https://www.w3schools.com/
W3Schools is the best website to learn some HTML, CSS, JS(JavaScript) and more. It is good way to learn HTML for beginners!

SoloLearn - https://www.sololearn.com/
SoloLearn also have tutorial like W3Schools but SoloLearn have Code Playground that features other people's codes. Check it out!

LittleWebHut - http://www.littlewebhut.com/
LittleWebHut also have a tutorial like both websites. But it have a build it test where you can test your HTML code!

HTML - http://html.com/
HTML have tutorials but it have a Cheat Sheet. Well, it says it all. a Cheat Sheet. :)

Code Academy - https://www.codecademy.com/learn/web
Code Academy have it's own tutorial web page.

Not all of us are perfect right? Even me.
I use HTML code validator to validate my HTML code.
Or use fixmyHTML to fix your html.

You can use CSS/JS and more to customize your HTML aka website to make it more modern and to your liking. Have fun coding!

If you have any issues with this post, contact me so I can edit/remove someparts this post. I am not perfect!
 
  • Like
Reactions: Lucien

Djentism

Dedicated Member
Jun 26, 2016
634
1,016
199
My shed
Hey! If your new at HTML, here are the basic tips and tricks on html/css/js.

The list is kinda long so I am going to categorize it accordingly.

This is the application. This is my opinion.
HTML

Adobe Dreamweaver (Both CS and CC)

Pros:

In Dreamweaver CC 2017 (Latest), New Code Editor, Developer Workspace, Modern UI, CSS preprocessor support, Real-time browser preview and more

In Dreamweaver CS6, you can create a new HTML, ColdFusion, PHP, CSS, JavaScript, XML, Fluid Grid Layout and more.

Cons:
Money. The application is under adobe, which if you know yet, needs to pay in order to use the application.

Notepad++

Pros:

Can be used as an html editor.

Cons:
Unlike Dreamweaver, notepad++ does not have "auto-correct" and insert an element

There are tons of applications that can be used as HTML Editor. Here are top ten best alternatives to Adobe Dreamweaver .

Everyone have to start somewhere. Here are some website.

W3Schools - https://www.w3schools.com/
W3Schools is the best website to learn some HTML, CSS, JS(JavaScript) and more. It is good way to learn HTML for beginners!

SoloLearn - https://www.sololearn.com/
SoloLearn also have tutorial like W3Schools but SoloLearn have Code Playground that features other people's codes. Check it out!

LittleWebHut - http://www.littlewebhut.com/
LittleWebHut also have a tutorial like both websites. But it have a build it test where you can test your HTML code!

HTML - http://html.com/
HTML have tutorials but it have a Cheat Sheet. Well, it says it all. a Cheat Sheet. :)

Code Academy - https://www.codecademy.com/learn/web
Code Academy have it's own tutorial web page.

Not all of us are perfect right? Even me.
I use HTML code validator to validate my HTML code.
Or use fixmyHTML to fix your html.

You can use CSS/JS and more to customize your HTML aka website to make it more modern and to your liking. Have fun coding!

If you have any issues with this post, contact me so I can edit/remove someparts this post. I am not perfect!
Please don't reply to threads older than 2 weeks.

@zRinne @Skifby lock??
 
Status
Not open for further replies.
Members Online

Team online

Latest profile posts

How do you make spoilers with a name?
Reesle wrote on ZachTart26's profile.
Welcome to the Official Cubecraft Forums! If you need help with something, feel free to DM me or a staff member anytime! Have a great day! :D
Reesle wrote on CalvinxKlein's profile.
Happy Birthday! 🎂
Top Bottom