Jump to content
xisto Community

HannahI

Members
  • Content Count

    351
  • Joined

  • Last visited

Everything posted by HannahI

  1. Even if you type in googlr.com it takes you to google.
  2. ASTA HOST ROCKS 24/7!!!!!!!I love free professional web hosting!
  3. HannahI

    Safari 4

    Listen, the welcome video is at: http://www.apple.com/
  4. I don't have any,I starting a topic where we can share tips, we can learn from each other.
  5. That's a great tutorial. :PI learned I thing or two. :PAWESOME! -Hannah
  6. I never had that problem before, never even heard of it.Now that you tell me that it is common glad I found this post before that happens to me and I go into trouble like you did. :DI'm sorry this happend to you -Hannah
  7. Nope, I never tried them, but kind of a strange thing to happen any way. :DBye-Hannah
  8. The most common way to do that is to use CGI.
  9. Thats a nice trick you got there.One of those common tricks, always work, always will.-Hannah
  10. I would draw a picture of fire, then make movie clips with fire going up and down so it is animated.
  11. Now you tell me that AlienWare is bad, I thought I should get one, i think I changed my mind now.
  12. Oh, you kidding me.I thought I type pretty fast, but that is wiked fast;not like you, never will be.I do agree, you type fasy.-Hannah
  13. Hello,How do you get infomation about the users computer and not just the user browser?Get this straight; I'm not using Java.Bye,-Hannah
  14. Hello,I have a strange story about VMWare for mac; yes, I know you probally think that this post goes somewhere else.Well, let get on with the story! :DI installed Windows 7 RC in VMWare for mac. I liked it very well. But there is only one problem about that. It is that about every 3 uses of the virtual machine in crashes. But since it is not a really a windows computer, the virtual machine brakes! :PI used it about 9 times, so the title looked like "Windows 7 3. Strange.Enjoy,-Hannah
  15. Hello,I have a very hard time working in Photoshop.I figured a bunch of you do, too! :DSo just post any of your tips about using photoshop so we can learn from each other.Hope we can learn something useful.Bye,-Hannah
  16. Hi Guys,Thanks for metioning those things.I'm not sure if that such a basic web page like this would be required, I will add it now.Thanks for reading and hope you enjoy,-Hannah
  17. Hi.I'm posting more tutorials.This is thge first one, The structure of HTML.Later I'll go in to real stuff like CSS or JS.Bye.
  18. If you do not have know the structure of HTML, please leave or go to http://forums.xisto.com/topic/97247-topic/?findpost= Okay Now that you have the basic programming skills to write website in HTML, we can move on to real web programming. In this lesson we will be learning all about HTML tags. We can start us off with how to make a link in HTML. If you are unsure what a link is, a link is some text the will take you to another page. Links use the a tag. A stands for anchor. To create a basic link to google.com you would use this code. Shown in Listing 2.1 Listing 2.1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://forums.xisto.com/no_longer_exists/ First Page</title><meta http-equiv="content-type" content="text/html; charset=UTF-8"></head><body><a href="https://www.google.de/?gfe_rd=cr&ei=BwkjVKfAD8uH8QfckIGgCQ&gws_rd=ssl Me</a></body></html>Lets go take a look at what code is doing and means. If you look you will see the HTML structure that we learned last class. You will see that the a tag is there. Href is were the links goes to. If you look you will see that it looks like this. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://forums.xisto.com/no_longer_exists/ http-equiv="content-type" content="text/html; charset=UTF-8"></head><body><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Cat_drawing.svg/322px-Cat_drawing.svg.png" alt="This is the title" /></body></html>That is the basic code to a image. You can add the height parameter and or the width parameter. Also you can add the alt parameter. The alt parameter is a parameter the defines what text will show up when you put your mouse over it, it is the title. That was all to learn in this lesson. If
  19. Thanks yordan for fixing my mistake when I created my document. I forget about BB Code.
  20. Hello and Welcome to my Tutorial. In this lesson I will be teaching you how to create a basic page using any Text Editor. To start us off in html the root tag is html and all HTML tags are inside <>. Also to end a tag you would type the tag but after the < character you type a left-right slash. Then also their are to tags inside the HTML tags in the framework. They are the head tag which is to set the header, everthing in the header tag is invisible content goes. Then the other one is the body tag which is where you can put you visible content for your page. Also in the head tag there is a tag that goes there called a meta tag. A meta tag gives infomation for search engines and browsers such as a the title, the description, the keywords, and the type of document. There is a tag that goes before the HTML tag which is the DOCTYPE tag which we will talk a little bit more abput later but for now we can just say that it is the tag to tell the browser the document type. Example shown in Listing 1.1 Listing 1.1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://forums.xisto.com/no_longer_exists/;'>http://forums.xisto.com/no_longer_exists/;Going back into the DOCTYPE tag lets learn about it. The DOCTYPE tag is before the HTML tag The DOCTYPE tag starts with a exclamation point The DOCTYPE tag doesn't follow the rules of HTML The DOCTYPE tag has a URL that tells the browser the type of document That is the basic framework of the page. So now all you need to do is save your document to your hard drive.Once you do that if you open it in the browser you will see that their is no content and that is because that is just the framework of the website. If you type something in to the content of the body is you will see it will appear on the screen. Example shown in Listing 1.2 Listing 1.2 <html><head></head><body>fgkdjhfgskjhfdgskjfgsdfkjhd</body></html>That is the basic example to putting content on the page. That is how you add content to the page but their is a important tag that goes in the header. It is the title tag which put the title of the page. Example shown in Listing 1.3.Listing 1.3. [tab][/tab]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"[tab][/tab][tab][/tab][tab][/tab]"http://forums.xisto.com/no_longer_exists/ kjfdshg</body></html>Notice that in the top of the page it says what you put in the title tag. Also when you put your website online that is what will display in search engine's.There is just 1 more thing to talk about, the line break tag. The line break tag basically simulates hitting enter. Example shown in 1.4 Listing 1.4 [tab][/tab]<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"[tab][/tab][tab][/tab][tab][/tab]"http://forums.xisto.com/no_longer_exists/;'>http://forums.xisto.com/no_longer_exists/;There is one thing about the line break tag that I have to say. Since the line break tag never ends you write it out like this <br /> instead of <br>, Okay. Bye,
  21. I think what he's saying is that he wants to run a web server on the terminal.
  22. Hi guys.Do you know of mac software for xbox development?
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.