Jump to content

Search the Community

Showing results for tags 'confused'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 3 results

  1. <!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="Hybrid.css" /> <style> </style> </head> <body> <style type="text/css"> body { background-image:url("Images/Games.jpg"); color: white; } #menu li { display: inline; } ul { list-style-image: url('Images/controller.png'); font-size: 30px; } div { width: 100px; height: auto; text-align: justify; } </style> <section> <div id="header"> <h1 align="center">Lets talk about video Games.</h1> <p align="center"> Hello, welcome to my video game discussion site. I made this site to promote the discussion about video games, amongnst video game lovers such as myself. I want this site to essentially<br> turn in to a place where fellow gamers can come to discuss their views on video games, strategies, preferences, issues etc... Anything that involves video games. Slowly as the site is constantly<br> grows and expands, I would like to add a section where individuals can pitch, discuss, and contribute to the ideas for their own video games. While I am a lover of all video games of all genres. <br> I have this issue with first person shooters. In my opinoin the market is over saturated with them. I want to bring back the RPG and Action genres. This is my first attempt at moving towards this <br> goal. So I call on all video game enthuasists to help me in this cause. We need more ideas entering the market. I want this site to act as a hub for the ideas of these individuals. This is just the start. <br>\ </p> <ul id=menu> <li><a href="registration.html"a>Register</a></li> <li>michael</li> </ul> </div> </section> <section> <h1>Video Game Consoles</h1> <ul> <li>Atari</li> <li>Nintendo</li> <li>Sony</li> <li>Microsoft</li> <li>Computers</li> </ul> <p> This is a paragraph, is it 300px? </p> </section> <section> </section> <script> </script> </body> </html body { background-color: black; margin: 0; padding: 0; } #header { float:left; width:100%; height: auto; background-color: black; } #footer { position: relative; float:left; width:100%; background-color: black; } #wrapper { float: left; padding-left: 200px; padding-right: 200px; overflow: hidden; } #leftbar { position: relative; float: left; width: 200px; background-color: yellow; right: 200px; margin-right: -100px; margin-bottom: -2000px; padding-bottom: 2000px; } #rightbar { position: relative; float: left; width: 200px; background-color: red; margin-right: -200px; margin-bottom: -2000px; padding-bottom: 2000px; } #content { position: relative; float: left; background-color: tan; width: 100%; margin-bottom: -2000px; padding-bottom: 2000px; } Ok yesterday when I left this in the cloud9 environment it was working fine. Everything was how I wanted it at that current time. Now when I came back to it after work the header of the main page is just stupid big. I don't know what is happening. It no longer fits in my screen. The site is far to big, and I have no clue how I can return it to what it was. Any help would be appreciated. Edit - I am sorry, I am sure you all can distinguish between the two, but just in case The top part of code is the actual html code, while the bottom portion is the CSS for that page. I simply do not know what is causing this page to be as huge as it is.
  2. Basically, I want my character to move to the left when I press the left arrow button, but nothing happens. Why won't my code work? <!DOCTYPE html><html><head> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.4/jquery-ui.min.js"></script> <script src='script.js'></script></head><style>html{ background-color: lightblue;}.character{ height: 150px; width: 70px; margin-top: 300px; margin-left: 300px}</style><script>$(document).ready(function(){ $(document).keydown(function(e){ if (e.keyCode == 37){ $('.character').animate({left:'-=30px'}, 200); } });});</script><body> <img class = "character" src = "https://lh3.googleusercontent.com/-i1FpxHN6IGs/VUQpAAWIp0I/AAAAAAAAADo/lEkxwoauAyc/w346-h780/stickfigure.png"></img></body></html>
  3. Following this link : https://developer.mozilla.org/en-US/docs/Web/API/SVGMatrix I tried to use the multiply method to multiply two matrix like this : var m =[[3,4], [5,6], ]; var n =[[7,8], [9,2], ]; var l = multiply(m,n);console.log(l); However , the web console shows this error : multiply is not defined what is the problem?
×
×
  • Create New...