HTML - Programming Language Choice For Web Designer
Web Design Company is a site previously built in using only html and javascript.Now it wants to switch to J2EE or php.What is the best choice for it,can any one help?
web design Similar Tutorialshi,all what do you all think about the shelly cashman series,i bought the html textbook 2006 4th edition.from ebay a few days ago used.I hope to learn on my own cause my college i am in only taught me the basics.i want to be a freelance web designer after i graduate from this career school college in 5 months.right now there teaching me dreamweaver cs4.Let me ask what does it take to be a professional web designer,i mean my school is a 12 month course for a diploma but it seems to me they are just teaching me the basics.Any info will be helpful...thanks.... I am considering becoming a web designer for a career.Im still deciding if i should go to a career school for a year and get a career diploma.Is web design field a good way to earn a good salary.Is there a limit to what i can make.thankyou HI, I'm sorry if this is the wrong place to post, I could not find anywhere that this question really fits. I remember a while ago, I came across a wallpaper with the resolution guides on it, so i could resize my browser and see how the site will look at different resolutions. A long story later, I no longer have this wallpaper and can not find it anywhere. I was just wandering if anyone has one they could email/direct me to. Thanks in advance Amar Hello I've been doing graphic design for a few years now and have always made my wesbites (non related to graphic design) for a few years in photoshop, creating large images for pages, looked quite nice, unfortunately not very seo friendly, venturing into the world of real coding!I Started developing my website further, creating a good rich text and well linked site but unfortunately the cosmetic side of it was lacking, after studying up on html and css, I decided to use a template, due to my coding skills being very basic, with a little knowledge being a dangerous thing my website looked quite nice, but unfortunately the validation errors where hitting nearly 100 on each page! Also I had a few other problems My coding skills, still need work. But thankfully I'm still reading/watching/listening/learning when I can. Now I've scrapped the template, wanting to start fresh, redo my css and html using a dreamweaver hybrid, header, footer and right bar template, my main problem at the moment is how do I drop down my main content and sidebar div's to allow me to insert a div for a menu? What I'm looking for desperately is some kind person who has a little free time to pm me, and help me out occasionally when I hit roadblocks, rather than creating bulks of mess's on forums for 50 people to debate what's right and wrong and point out that my questions have been answered a million times before and run a search, which is all very good and well, but I really could do with some real-time information and help from someone that knows what they are doing! Thank you! Matt P.S, Managed to fix the menu div- I think, but if someone would be willing to help me out and share advice like I mentioned in my last paragraph, would be very grateful! I'm designing a simple web page for school, and am trying to figure out fix the background correctly. I have managed to set the background in one spot like this: http://www.w3schools.com/css/tryit.a...und-attachment but need to figure out how to wrap the text so it does not interfere with the background image because I have it aligned to the bottom left. I am using Front Page 2003. I can elaborate more if needed. Can anybody help? When designing a webpage is there a way to see the correct multiple choice answer using firebug or some like extension. hi, i am new in this field of web designing .i don't even have good knowledge of colors.how can i improve my color choice and color theory.can you suggest me some tricks so that I'll work on that to make perfection.please help. kindly revert back.... Hi! I would like to create a drop down menu in HTML where the user can choose many options, not possible in simple HTML? Dharma Hi, I have a select box with values 1, 2 and 3. When I select '1', I want right next to it 1 inputbox with id A. When I select '2', I want on the same place 2 inputboxes (with other IDs B and C), and so on ... I tried 1) Putting the 3 spans immediately after the select box and switch visibility between hidden and visible accordingly. Problem he all spans take some space. So if I select 2, it shows me correctly the 2 inputboxes B and C, but there is an empty space between the select box and the inputboxes since the first span is there (invisible). I want the boxes immediately next to the select box. 2) Putting 3 spans (span1, span2, span3, containing 1 box, resp. 2 boxes and so on) somewhere invisible. And then using 1 span next to the select box. On change of choice: document.getElementById("span").value = document.getElementById("span2").value; Problem he the boxes are not shown in span, just empty space. Who has a Good solution? Thanks alot Hi, I am trying to make a search form with textboxes and dropdowns. There are 3 options on the page however if on the third option that is a dropdown, i select number 3, another dropdown option is given. hope that makes sense please could someone point me in the right direction thanks so I am building a website, and I decided to test out a code before doing any major programming. Of course, it didn't work. I basically need a square covered in thumbnails of images, but then when the mouse is moved over a thumbnail the full-size image will show in that square (overtop of the thumbnails) until the mouse is moved off of the thumb. right now, however, it will not work on mouseover, but needs to be clicked on and only shows while the mouse button is held. I am relatively new to DIV codes other than their use for alignment, but I think it might have something to do with layering? I got the code from he http://www.technorealm.co.uk/scripts...rshowtext.html and altered it to include my content, but as I was looking through the code I noticed there was no z-index within the DIV tag. Also, I know quite a bit about HTML but not very much about CSS, JavaScript, etc. Below is the code for the entire page, which you can view at this address: http://www.freewebs.com/tintedlens/ Any help would be appreciated! Thanks! <html> <head> <title>Photos.</title> <script language="Javascript"> <!-- function toggleDiv(id,flagit) { if (flagit=="1"){ if (document.layers) document.layers[''+id+''].visibility = "show" else if (document.all) document.all[''+id+''].style.visibility = "visible" else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "visible" } else if (flagit=="0"){ if (document.layers) document.layers[''+id+''].visibility = "hide" else if (document.all) document.all[''+id+''].style.visibility = "hidden" else if (document.getElementById) document.getElementById(''+id+'').style.visibility = "hidden" } } //--> </script> <style type="text/css">#div1, #div2, #div3 {position:absolute; top: 91; right: 91; visibility:hidden}</style> </head> <body bgcolor="FFFFFF"> <div id="link1" style="position: absolute; top: 100; right: 100;"> <a href="#" onMouseOver="toggleDiv('div1',1)" onMouseOut="toggleDiv('div1',0)"><img border="0" src="link1.jpg"/></a> </div> <div id="link2" style="position: absolute; top: 190; right: 100;"> <a href="#" onMouseOver="toggleDiv('div2',1)" onMouseOut="toggleDiv('div2',0)"><img border="0" src="link2.jpg"/></a> </div> <div id="link3" style="position: absolute; top: 280; right: 100;"> <a href="#" onMouseOver="toggleDiv('div3',1)" onMouseOut="toggleDiv('div3',0)"><img border="0" src="link3.jpg"/></a> </div> <div id="div1"><img border="0" src="image1.jpg"/></div> <div id="div2"><img border="0" src="image2.jpg"/></div> <div id="div3"><img border="0" src="image3.jpg"/></div> </body> </html> 2 Quick questions: 1) Is it considered good, poor, or indifferent programming style to implicitly connect labels with other form tags. For instance, is one of these preferable to the other? Code: <label for="username">Username</label> <input type="text" name="username" id="username" /> <label>Username: <input type="text" name="username" id="username" /></label> 2) Is it good or bad programming style to have the name and id of a tag the same? For instance, in the example above, the input object has an id and name of "username". Is this considered ok? Tahnks for all the help~ Is it possible to have user-defined functions in an HTML code that you can call whenever needed (like in C language)? I am developing a website and it has many pages. All pages have common features like banner image, footer etc. For example, I want to change a common feature, what I am currently doing is go do each page and make the correction. Is there any way that I can make the change in one place and let all other pages change by itself? For example, is it possible strip out of a section of code, save it another file and call it from all pages? I know this can be done when using javascript by making a new .js file and calling it. Is it possible in HTML? Say export a table (the code) to another file and call it from different pages? Any suggestions would be much appreciated. Hello there. As the topic states, I don't know exactly what language I'm looking for. I believe I've accomplished what I'm trying to do using embedded tables in the past with some CSS scripting, but it is not working, and I'm getting frustrated. Essentially, I designed the site in Photoshop CS3, sliced it up, and now in one cell I'm needing a repeatable background so that whenever the content is entered into the site, the borders extend down the side of the site. I could re-cut the picture, but I'm trying to avoid doing so if at all possible. The kicker is that, also in this same cell, I have an image that I need to use as a background that DOESNT repeat. When you scroll down the page, you see this image in the cell, but as you go down and down and down on the site, the other background previously mentioned is the one that repeats. Is there anyway to accomplish this? I've tried creating a table within that cell and using the background I need to not repeat in it while the cell beneathe it used the background that repeated, but to no avail. Hello I am a Professional Website Programmer/Cloning I am Currently Available to Work on Any website Cloning and Programming PM Me For for My Portfolio And I can Get Started ASAP Also we will discuss rates in Pm. Can you guys tell me what you consider to be the best best visual HTML programming application(s)? I'm talking about a program that has a GUI (graphical user interface), something similar to MS Word, which you could use to design a web page layout, and when you finish the program will spit out your layout in HTML code. Thanks, any help and advice is appreciated Hello! I have a problem with hebrew language in the URL address . Yes I can't write hebrew in the URL address and there are coding like #E2 its in hebrew gimel (ג) and so on ... I need the these hebrew language coding in the URL address. Please help me! Good morning/afternoon, I have a quick question. I have made a website for my company in English for the U.S. Market. My boss has now asked me to use the same website but to change the text in the website to several foreign languages and they will be hosted on domains in those countries which speak the respective languages. My question is, Will this cause any problems with search engines or displaying the website? If my coding is in English but the text is in another language and hosted on a foreign domain? Thought it might be helpful if I also showed what Doctype I was using. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> Thank you in advance for all your help. Hi, Just joined your forum. Very informative ! We have always embedded HTML code into our website so that visitors could choose french, german or whatever and then the whole site then worked in french or whatever the chosen language was. see our current site www.euroburolimited.co.uk As you will see this site needed an upgrade to better html standards and better visual presentation and so we bought a smart new template and have upgraded everything. Whilst the site is not yet published to our main domain the new version can be viewed on www.calmwoodlimited.com (This is just a spare domain that we are using for testing purposes. So whats's our problem ? On the original domain, the visitor chose his language and then the whole website worked in french - or whatever. on the new website, exactly the same code is embedded but it only works on the .index page - not on any of the others. How do we fix it so that we don't need to embed the code on every single page ? It must be something to do with the css div's or whatever. Any bright ideas please ? David. |