I know a little in html, but i was wandering is there a certain new language that might be really popular in the future maybe the newest language for web design? thanks....and also please include if you could a website to help you learn it
To be honest, all webpages (even today) start with basic HTML markup.
Other languages you can learn have different functions that apply to HTML. There isn't an alternate language as of now.
Some you could look into are (listed in order of importance):
-CSS: not technically a language, but helps you with the "style" (hence Cascading Style Sheets) of your page. Like color, font, layout, size, etc.
-PHP (also other languages, like ASP): the "server-side" coding which processes data from page to page, and manages databases
-JavaScript: deals with "client-side" coding (calculations, animations, menus, etc)
<html>
<b>
<i>
<u>
<img src="" width="" height="">
<a><a href""> Text Here</a>
<center>
<font size="">
<font color="">
<head>
<title>
<body>
<p>
<hr>
You should validate your code:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>My Page</title>
</head>
<body>
<b></b>
<i></i>
<u></u>
<img src="" width="" height="">
<a href="foo.htm"> Text Here</a>
<font size=""></font>
<font color=""></font>
<p></p>
<hr>
</body>
</html>
Look up a good html tutorial, most of this is invalid.
Hope this helps.
Bookmarks