+ 3
What do I do??
Hello my name is Derek. I'm completely new to this and I have no idea where to start. Any suggestions?
15 Réponses
+ 10
html
+ 5
Shake the pikachu around that's starting...
Continue
Suggestion :
Go for it
+ 4
yah NP and also helps to just kind pay around with ones you understand I downloaded all the progams just so id have a lot to try and most I all ready know I just not been playing on hear enuf yet
+ 3
what I did was just kind look around at the diff kinds of coding then played some and after a few got the just of it main one I know is easy word one.. print " hello there how r you doing new friend" ...copy past and you see what I am meaning there kind fun stuff hope this helps someone out
+ 3
NP and did you finger it out ?
+ 3
before you can start, have you determined what is the purpose of your presence. Are you here to learn, teach or help out.
+ 3
Im sure you pretty much have it covered by going through the basic structure of an HTML setup right? if not, you always build a website with HTML, style it using CSS which adds color, background images, font sizing, etc. makes the page look nice then javascript for more interactivity as you'll learn later. so the basic structure of all websites start out like this....
<!DocType html> - everything has a version tells browser you're using html5 version.
<html> - next line to add
<head>
<meta data /> - you will learn this later/describes the page and is used for SEO or site ranking amount different search engines.
<title>Site Title here</title> - shows at top of browsers
Also goes here are reference links for external linking (you will get to this later, eg. linking to CSS files and javascript files...but dont have to do that on sololearn. And last the scripting I was mentioning if you didn't want to use an external file....css and/or javascripting.)
</head>
<body>
<p>adding a paragraph - paragraph adds space below</p>
</body>
</html>
There are more HTML tags that you can add that do others things but this in the basics.
All comments can be omitted above and just copy and paste the code below until you can remember it.
<!DocType html>
<html>
<head>
<title>Site Title here</title>
</head>
<body>
<p>adding a paragraph</p>
</body>
</html>
+ 2
Thank you!
+ 2
no prob anytime
+ 1
thank you! I'll try it out now
+ 1
This is extremely helpful! Thank you a lot
0
I've started my HTML course. But I'm stumped. I have no idea how to write a head and body tag. Or even what it's used for. Like, <html>
<head>
<head>
<body>
<body>
</html> What in the world am I supposed to do with this?? lol
0
I'm here to learn