HTML - Are Html <!-- Comments --> Allowed Inside <title> Section?
are HTML <!-- comments --> allowed inside <TITLE> section?
i couldn't find an authoritative answer... Similar TutorialsBasically I have a tab on my website called future ideas and my goal is to have a small table at the bottom of the screen that simple has a "name", "comment" input box, and what I want is to when they click "submit" it will post a small little box of the person's comment on the bottom of the webpage. I have a feeling this is not easy at all and I would like some dumbed down language here when explaining to me because I am definitely not a pro at php coding yet. Or maybe if there is a package out there someone highly recommends please post it, but be sure there is a good guide to post as well for it. Thanks in advance! I've tried to insert a marquee into the title of one of my pages, but it doesn't work... how can I do this? And can a marquee be added into the status bar? I use IE btw if that helps. Hello Friends, I need a tool which can remove HTML comments from an HTML page. I don't want to create a regular expression to remove HTML comments rather I need a tool which should have command line support also so that it can be integrated with build process. Please advice. Thank you. i'm new so please be gentle! I have recently designed and put up a new website. url he http://www.thecomicstrippresents.webs.com it's the first time i have used photoshop to design a website and for a first attempt i dont think it looks half bad. i'm sure as well as looking a whole lot worse, it could look a lot better. first off can someone tell me the ideal resolution i need to save the images as some of the images are grainy and pixely. secondly, can someone suggest what i can use to put content in the mid section? a lot of the content is longer than the box allows so for the time being i have put an Iframe there, the iframe is ok temporarily but will be a bit of a as far as SEO goes and up until i changed to iframe i was coming up second page of a google websearch for 'The Comic Strip Presents' please can you someone help? cheers Em I'm trying to parse thru an HTML file and besides of having some problems with images, I also don't really understand how comments markup works. I was reading this, and I don't understand how <!------> hello--> is only one comment. In my parser I run to this <!--, and then what? Should I look first for -->, then again for --> and then for <!-- ? If another --> comes before <!--, then the comment includes this -->, and I should look again for a --> until the next <!-- comes before the next -->, assuming that there is one. Or how does it work? Hello everyone, New to this forum, hoping I can get some help. I am somewhat new to HTML, so I'm running into roadblocks every once in a while, most of which I've gotten through myself. I have a problem with an iFrame I want to use. I need to find a way to have an iFrame jump to a section of a page that I want to display. I am building a website for a hockey team. The URL is http://web.mac.com/chris.ducasse/for...a/gameday.html you will see an iFrame that embeds a page from "pointstreak.com" I want the iFrame to automatically jump down to the "scoreboard" section. Is this possible? If not, is there a way to get rid of the scroll bars for ALL browsers? I want to thank everyone in advance for their help, glad to be a part of this forum, looking forward to learning a lot! hi everyone this is my first page so i will probably have a couple of questions to help give me an idea of how to do that i want! basically someone has asked me to design them a site, i did a web design course but that was 6 months ago and i need to learn new things for it as well as try and remember what ive learned! ive got a semi basic layout, ill post the html and css, hopefully ill pate them in the right way (this definitely wont be the colour scheme, ive been following an online tutorial, want to get the layout right before making other tweaks) basically in the content section theyre looking for a rectangular box that has 4 imaes, 2 side by side and two below. these will change when theyre rolled over and when a particular image is clicked it will take them to the correct section of the site. as far as i understand from the css i have the size of the content section will change depending on how much information is there. how would i know what size to make the flash for insertion into this section so it fits properly without any gaps? sorry im a bit new to this but the more i learn the better! i dont have a clue how to actually code the flash yet but getting the size right would be a good start! thanks for your help HTML Code: <link rel="stylesheet" type="text/css" href="css/master.css" /> </head> <body> <div id="page-container"> <!--this div will hold all the other elements of the page--> <div id="main-nav">Main Nav</div> <div id="header"> <h1> Kilmaclolm Dramatic Society logo to be placed here </h1> </div> <div id="sidebar-a"> <dl class="hidden"> <dt id="about"><a href="#">About</a></dt> <dt id="services"><a href="#">Services</a></dt> <dt id="portfolio"><a href="#">Portfolio</a></dt> <dt id="contact"><a href="#">Contact Us</a></dt> </dl> </div> <div id="content"> Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Nullam gravida enim ut risus. Praesent sapien purus, ultrices a, varius ac, suscipit ut, enim. Maecenas in lectus. Donec in sapien in nibh rutrum gravida. Sed ut mauris. Fusce malesuada enim vitae lacus euismod vulputate. Nullam rhoncus mauris ac metus. Maecenas vulputate aliquam odio. Duis scelerisque justo a pede. Nam augue lorem, semper at, porta eget, placerat eget, purus. Suspendisse mattis nunc vestibulum ligula. In hac habitasse platea dictumst. </div> <div id="footer"><!--floated divs dhould come first to avoid any IE issues--> <div id="altnav"> <a href="#">About</a> - <a href="#">Services</a> - <a href="#">Portfolio</a> - <a href="#">Contact Us</a> - <a href="#">Terms of Trade</a> </div> Copyright © Kilmacolm Dramatic Society. A website by D Keenan </div> </body> </html> Code: @charset "utf-8"; /* CSS Document */ html, body { /*resets the margins and padding on both the html and body tags to 0 to ensure theres no space between the top of the browser and the top of the page */ margin: 0; padding: 0; } h1 { margin: 0; /* takes away the default margin and padding on h1 tags */ padding: 0; } .hidden { display: none; /* any element with this class wont be seen on the site */ } #page-container { /* there is a # as this is an id, to be used once on the page only, not repeated elsewhere this div's height will change depending on the content*/ margin: auto; /* browser sets margin, should centre the div */ width: 760px; /* sets the width of the container */ } #main-nav { background: red; height: 50px; /* the width doesnt need to be specified, it will be 760px as this is the with of the containing div */ } #header { background: blue; height: 150px; } #sidebar-a { float: left; /* floats sidebar to left of the screen */ background: darkgreen; /*the height is dependend on the content so no height will be set for the time being*/ width: 280px; } #content { background: green; /*the height is dependend on the content so no height will be set for the time being*/ margin-left: 280px; /*creates a margin as wide as the sidebar to separate the sidebar information and the content */ } #footer { clear:both; /*When an element has the clear property assigned, if it comes into contact with a float it is placed right below where that float ends.*/ background: orange; height: 66px; } Just a quick question... How can I use Html in a title tag... Ex.. The brown fox runs fast. But I want: The brown fox runs fast. I want to be able to <br/> Hello, I was wondering how to do to put a background that fits with the screen. I like code, I simply put background = "image.jpg" thank you Hi. My latest project is a website that I plan to update via a vBulletin "back end" I wanted to do this via RSS feeds from the forums. What I am trying to do is have it so I can put ONLY the data from a single forum post inside a HTML page, that will then update as I update the forum post. I have started reading up a little and found that vBulletin offers the following methods: -XML -RSS -RSS1 -RSS2 All of them methods appear to pull data that I do not need/want (posted by, date, time, link to the post). I literally JUST want the data from inside the post to be inserted in to the HTML page. Besides that, I am unsure of how to add the actual data to the web page. Looking for a simple (if possible) guide on how to do this. I will be formatting the data via. .CSS Could anyone point me in the right direction? thx. How can I use Latex inside html? Can I use latex style or class files as well? Thanks. I have a site with a nav bar. http://www.groundzerostudios.co.nr/ It is a lot of work to go to each individual site to update the nav bar. I was wondering if i could save the nav bar to a seperate file and open it in each site. That way if i update the nav bar once, the sites will all call on the new nav bar. Here is the nav bar code ?////////////// HTML Code: <p> <fieldset> <legend> <b>Links:</b> </legend> <table border="0"> <tr> <td><FORM name="homeform"> <SELECT name="gamelinks" onChange="window.location=document.homeform.homelinks.options[document.homeform.homelinks.selectedIndex].value"> <OPTION SELECTED value="H:\Wamboldt's Folder\webdesign.html">--Main-- <OPTION value="H:\Wamboldt's Folder\index.html">Home </SELECT> </FORM></td> <td><FORM name="gameform"> <SELECT name="gamelinks" onChange="window.location=document.gameform.gamelinks.options[document.gameform.gamelinks.selectedIndex].value"> <OPTION SELECTED value="H:\Wamboldt's Folder\webdesign.html">--Game Design-- <OPTION value="http://groundzerogames.110mb.com/gamehome.htm">Home <OPTION value="http://groundzerogames.110mb.com/games.htm">Games <OPTION value="http://groundzerogames.110mb.com/wip.htm">W.I.Ps <OPTION value="http://groundzerogames.110mb.com/service.htm">Services </SELECT> </FORM></td> <td><FORM name="webform"> <SELECT name="weblinks" onChange="window.location=document.webform.weblinks.options[document.webform.weblinks.selectedIndex].value"> <OPTION SELECTED value="http://groundzerogames.110mb.com">--Web Design-- <OPTION value="http://groundzerogames.110mb.com/gamehome.htm">Home <OPTION value="http://groundzerogames.110mb.com/games.htm">Portfolio <OPTION value="http://groundzerogames.110mb.com/wip.htm">Help <OPTION value="http://groundzerogames.110mb.com/service.htm">Services </SELECT> </FORM></td> <td><FORM name="helpform"> <SELECT name="helplinks" onChange="window.location=document.helpform.helplinks.options[document.helpform.helplinks.selectedIndex].value"> <OPTION SELECTED value="http://groundzerogames.110mb.com">--Courses-- <OPTION value="http://groundzerogames.110mb.com/gamehome.htm">Home <OPTION value="http://groundzerogames.110mb.com/games.htm">Game Design <OPTION value="http://groundzerogames.110mb.com/wip.htm">Web Design </SELECT> </FORM></td> <td><FORM name="tutform"> <SELECT name="tutlinks" onChange="window.location=document.tutform.tutlinks.options[document.tutform.tutlinks.selectedIndex].value"> <OPTION SELECTED value="http://groundzerogames.110mb.com">--Assistance-- <OPTION value="http://groundzerogames.110mb.com/gamehome.htm">Tutorials <OPTION value="http://groundzerogames.110mb.com/games.htm">Help <OPTION value="http://groundzerogames.110mb.com/service.htm">Request </SELECT> </FORM></td> <td><FORM name="contform"> <SELECT name="contlinks" onChange="window.location=document.contform.contlinks.options[document.contform.contlinks.selectedIndex].value"> <OPTION SELECTED value="http://groundzerogames.110mb.com">--Contact Us-- <OPTION value="http://groundzerogames.110mb.com/gamehome.htm">Email <OPTION value="http://groundzerogames.110mb.com/games.htm">Telephone <OPTION value="http://groundzerogames.110mb.com/service.htm">Mail </SELECT> </FORM></td> <td><FORM name="newsform"> <SELECT name="newslinks" onChange="window.location=document.newsform.newslinks.options[document.newsform.newslinks.selectedIndex].value"> <OPTION SELECTED value="http://groundzerogames.110mb.com">--News-- <OPTION value="http://groundzerogames.110mb.com/gamehome.htm">Recent <OPTION value="http://groundzerogames.110mb.com/games.htm">Archives <OPTION value="http://groundzerogames.110mb.com/service.htm">Submit </SELECT> </FORM></td> </tr> </table> </fieldset> </p> ?//////////// I am having problems with putting HTML code into an RSS 2.0 description tag. If I escape the HTML using <![CDATA[, the HTML shows up fine when the feed is viewed with Firefox 2.0, IE7, and various feed readers. The problem occurs when browsers like IE6 and Netscape view the .xml feed, as these do not support native RSS. To allow the latter browsers to easily display the feed, I use XSL to transform the XML into something much nicer. However, the escaped HTML shows up as literal characters (code) in the feed when viewed with IE6 and Netscape. How can I show HTML in the description tag of an XML feed using XSL? I also get literal characters when trying entity-encoded HTML. Dear experts, I'm trying to send out a EDM. After creating the html mail, I realised that after attaching it to signature of my Outlook Express, my picture inside the html codes doesn't not appear. What should I do in order for the picture to appear ? Hope to hear some advice. Thanks. I use XSLT to create a html document, and I'm not THAT familiar with html I want to divide my html page in 2 frames via a frameset. For many reasons I only want ONE html document at the end. I want to create totally new html code in the source URL of a frame, this may sound funny, so here is an example: This is how it normaly looks if I'm correct: HTML Code: <frameset cols="400,*" frameborder="yes" border="5"> <frame name = "leftF" src = "2.html"> <frame name = "rightF" src = "3.html"> </frameset> This is something like I want it to be(because I only want 1 html document): HTML Code: <frameset cols="400,*" frameborder="yes" border=5> <frame name = "leftF" src = "<html><body>This is the 1st frame</body></html>"> <frame name = "rightF" src = "<html><body>This is the 2nd frame</body></html>l"> </frameset> I've tried the above without any success. Does anyone know how to do this, or does anyone have an other suggestion (I don't HAVE to use a frameset, but I don't know any other possibility ). Thank you. If you want to include a template file how do you do that inside a html page? I want to include a footer.dwt file inside my html file...... I want to implement the footer.dwt file for all the pages of website....so i just want to call the footer.dwt file below my html page...... Help? Hi Currently I am working on all static website i.e. it is having all HTML pages. How should I include a a HTML file inside another HTML file. Any help will be highly appreciated.... Sourav Hello all. HTML is something new to me, and I'm still making some experiments, so if something lame or wrongly written comes up don't be surprised. I'm designing a webpage with frames. One of the frames presents a web page of the web. Doesn't matter which (i think). The problem is I don't want the full page to be displayed but only part of it (somehow similar to crop an area of the page). Is this possible to achieve? Thank you in advance. hey dunno if there is an html code for this or if i shuld do this in php but does anyone have a way to have an upload section where all the uploads go and a different place to upload hope it make sense thx brad how do I create a section slide? This is where say, we have an item on this page. And we can expand/collapse that part from a click of a button? I can't seem to find the examples....but have seen them before. I hope you know what I mean basically just want some panel where I can click on a button, it will expand the contents (slide) and when I click on the button again, it will collapse the contents (sliding back up) |