Help - Search - Members - Calendar
Full Version: Video (html coding) my first video (html coding for dumbies) needed feedback
HTMLHelp Forums > General Interest > Off Topic
TheTLtech
Link to Video for this topic (embed wont work)

If you could click youtube link thanks a lot need some feedback if i missed anything, first video just short simple stuff.
Megagamerx1
QUOTE(TheTLtech @ May 13 2011, 03:58 PM) *

Link to Video for this topic (embed wont work)

If you could click youtube link thanks a lot need some feedback if i missed anything, first video just short simple stuff.


Checked out the video. For one thing, your code should have <head> & </head> surrounding the <title> tags. Also, you need a !DOC Declaration. You should check out this if you have no idea what I'm talking about: http://w3schools.com/html/html_doctype.asp

PM me if you would like any help. biggrin.gif
TheTLtech
QUOTE(Megagamerx1 @ May 13 2011, 05:21 PM) *

QUOTE(TheTLtech @ May 13 2011, 03:58 PM) *

Link to Video for this topic (embed wont work)

If you could click youtube link thanks a lot need some feedback if i missed anything, first video just short simple stuff.


Checked out the video. For one thing, your code should have <head> & </head> surrounding the <title> tags. Also, you need a !DOC Declaration. You should check out this if you have no idea what I'm talking about: http://w3schools.com/html/html_doctype.asp

PM me if you would like any help. biggrin.gif

Thanks!
Megagamerx1
ALSO: You should use some video editing software (NOT Movie Maker -- It is a disgrace to all movie editing software)

I know a few good editors if you care to know.
TheTLtech
QUOTE(Megagamerx1 @ May 13 2011, 05:23 PM) *

ALSO: You should use some video editing software (NOT Movie Maker -- It is a disgrace to all movie editing software)

I know a few good editors if you care to know.

oh absolutley
Megagamerx1
QUOTE(TheTLtech @ May 13 2011, 04:26 PM) *

QUOTE(Megagamerx1 @ May 13 2011, 05:23 PM) *

ALSO: You should use some video editing software (NOT Movie Maker -- It is a disgrace to all movie editing software)

I know a few good editors if you care to know.

oh absolutley


First of all: Do you have a computer running Linux? There is a very good video editor out there, but it's only for linux. I know some others, but this one is the best.
TheTLtech
sadly no
Megagamerx1
QUOTE(TheTLtech @ May 13 2011, 04:29 PM) *

sadly no

Alas... I have to do some research and will get back to you shortly.
TheTLtech
thanks man
Megagamerx1
QUOTE(TheTLtech @ May 13 2011, 04:32 PM) *

thanks man

If you want I could help you with the video editing myself. Love the idea a HTML How-To's Videos. Though, we should continue this in PM's. Just click "PM" under my post.
Christian J
QUOTE(Megagamerx1 @ May 13 2011, 11:21 PM) *

your code should have <head> & </head> surrounding the <title> tags.

Actually the start and end tags for the HTML, HEAD and BODY elements are optional in HTML4 and 5 (but not in XHTML). You must still organize the content so that the HEAD and BODY sections are separate, though (for example you can't put an H1 before TITLE). See e.g. http://www.w3.org/TR/html401/struct/global.html#edef-HEAD

But in a beginner's tutorial maybe it's still a good idea to use the tags, in order to emphasize/illustrate the separate nature of the HEAD and BODY sections. I also recall some javascript and CSS?) doesn't work properly in some browsers unless the tags are there.

QUOTE
Also, you need a !DOC Declaration. You should check out this if you have no idea what I'm talking about: http://w3schools.com/html/html_doctype.asp

True, see also http://htmlhelp.com/faq/html/basics.html#doctype

Here's a valid HTML4 document:

CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<title>foo</title>
<h1>foo</h1>

happy.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2024 Invision Power Services, Inc.