HTML - Coming Soon - The Data (semantic) Web
The Data (Semantic) Web -- and RDFa:
Preparing web sites for the Data (Semantic) Web RDFa - Interoperable Web Metadata James Similar TutorialsThis past week the W3C announced the publication of a working draft of RDFa in XHTML: Syntax and Processing in their Semantic Web Activity News Weblog which includes an RSS feed. I include a Semantic Web/RDF Overview/Reference compilation via the link in my signature block. James does anybody see anything obvious on why these tabs on one of my websites is not displaying the 'selected' class on the main nav tabs? i did something to break them
Code: .overlapTabs{ border-bottom: 1px solid #bbb8a9; float: left; padding-top: 8px;} .overlapTabs ul{padding: 0; list-style-type: none; font-family: Tahoma, sans-serif, serif; font-size: 90%; margin: 0; font-weight: normal;} .overlapTabs li{display: inline;} .overlapTabs li a{padding: 3px 8px 3px 15px; text-decoration: none; padding-right: 40px; /*extra right padding to account for curved right edge of tab image*/ color: #666666; background: transparent url(images/css/righttabdefault.gif) 100% 1px no-repeat; /*give illusion of shifting 1px down vertically*/ border-left: 1px solid #dbdbd5; position: relative; display: block; float: left; margin-left: -19px; /*shift tabs 19px to the left so they overlap*/ left: 19px;} .overlapTabs li a:visited{} .overlapTabs li a:hover{text-decoration: underline;} .overlapTabs li .selected a{ /*selected tab style*/ color: black; z-index: 100; /*higher z-index so selected tab is topmost*/ top: 1px; /*Shift tab 1px down so the border beneath it is covered*/ background: transparent url(images/css/righttabselected.gif) 100% 0 no-repeat;} .overlapTabs li .selected a:hover{text-decoration: none;} Code: <span class="overlapTabs"> <ul> <li class="selected"><a href="/?">Home</a></li> <li><a href="link2">link2</a></li> <li><a href="link3">link3</a></li> </ul> </span> http://wolfdogg.org take a peek here p.s. i know the css is spaghetti, its time i got off the code bandwagon and comb through my years old display modeling. Hello again, I'm getting this error when I view my portfolio pagel in Internet Explorer. It works fine in Firefox & Safari and Opera. I think it's to do with the javascript file but I don't know why because there's nothing from with line 89 of it, it's declaring a variable Code: Message: Object required Line: 89 Char: 1 Code: 0 URI: http://absolute-websites.com/script.js What's happening is it's not display 2 video's. Hi, I've a frameset which contains two rows: <frameset rows="40%,60%" frameborder="10" ImagesBaseUrl="images/" CssClass="VerticalSplitterBar" scrolling="yes"> <frame src="ProgramReport1.aspx" frameborder="10" MARGINWIDTH="5px" scrolling="yes"> <frame src="BottomFrame.aspx" frameborder="10" > </frameset> The first page(ProgramReport1) width size is larger than the normal window size: <body> <ComponentArt:TabStrip id="TabStrip1" <ComponentArt:MultiPage id="MultiPage1" <ComponentArtageView ID="PageView1" <div style="vertical-align:middle; height: 552px; overflow: auto; overflow: auto; width:1400px; padding-left: 5px; padding-right: 5px;"> While displaying the frameset the vertical scroll bar is there, but there is no horizontal scroll bar. I've enabled scrolling="yes" to the frame, but still the horizontal scroll bar is not displayed. Do I need to handle any other properties. Thanks for your time, Senthil How do I prevent framed html pages from coming up in a Google search? I made a site with Dreamweaver that has frames and within those frames I have different html pages that load into them. I came across an extension once which I believe prevented those pages from coming up in Google searches but cannot relocate it. These pages are just bare text and should not be accessed by themselves Hi Experts, I am designing a webpage where based on the year selection the associated years webtable needs to be displayed in the webpage. Pls give som suggestions and if possible the code on to how to code this using HTML and Jav Script. I know I have to write afunction and then call the fn based on the input.but need your help on this. Thanks, Bsquare So I've got a form with some input text. In addition to the data in the input text I want to send some other data that has already been predetermined on initial page load. How would I declare the other data within the form element? Thanks Hi everybody! I have a jsp page with a form and a table. My aim is that when i press the submit button of the form,collect the data and fill the table with it. I am working with J2EE. I have already collected the data in a Java class,but I dont know how to introduce this data into the table. Best Regards! I have been using my site for some time now and it carries the image name over when you clicked on purchasing the print. It carries it still, but when you submit the form, the image name isnt there and the form errors because the field is blank. Here is the site: www.sthompsonphoto.com I cant seem to figure out why it disappears when you click Submit? Any help would be great! I have a page here that add rows with 3 textbox after pressing the button. The added textbox have all unique name. My question is how can I access the data on the added textbox in the next page if I don't know how many rows will be added? <script language="javascript"> function addRow(){ var newRow = document.getElementById("mytable").insertRow(document.getElementById("mytable").rows.length); var num = ((document.getElementById("mytable").rows.length - 1) * 3) - 1; //add 3 cells (<td>) to the new row and set the innerHTML to contain text boxes var oCell = newRow.insertCell(0); oCell.height = '25'; oCell.vAlign = 'middle'; oCell.align = 'center'; oCell.style.background = '#EEEEEE'; oCell.innerHTML = "<input type='text' name='textfield"+(num)+"' class='bodytext' size='20' align='center'>"; oCell = newRow.insertCell(1); oCell.height = '25'; oCell.vAlign = 'middle'; oCell.align = 'center'; oCell.style.background = '#EEEEEE'; oCell.innerHTML = "<input type='text' name='textfield"+(num + 1)+"' class='bodytext' size='35' align='center'>"; oCell = newRow.insertCell(2); oCell.height = '25'; oCell.vAlign = 'middle'; oCell.align = 'center'; oCell.style.background = '#EEEEEE'; oCell.innerHTML = "<input type='text' name='textfield"+(num + 2)+"' class='bodytext' size='3' align='center'>"; } </script> <table width="100%" border="0" cellpadding="4" cellspacing="1" class="bodytext" id="mytable"> <tr> <td height="25" align="center" valign="middle" bgcolor="#dddddd" class="bodybold">Part #</td> <td height="25" align="center" valign="middle" bgcolor="#dddddd" class="bodybold">Description</td> <td height="25" align="center" valign="middle" bgcolor="#dddddd" class="bodybold">Qty</td> </tr> <tr> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield2" type="text" class="bodytext" size="20" ></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield3" type="text" class="bodytext" size="35"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield4" type="text" class="bodytext" size="3"></td> </tr> <tr> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield5" type="text" class="bodytext" size="20"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield6" type="text" class="bodytext" size="35"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield7" type="text" class="bodytext" size="3"></td> </tr> <tr> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield8" type="text" class="bodytext" size="20"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield9" type="text" class="bodytext" size="35"></td> <td height="25" align="center" valign="middle" bgcolor="#EEEEEE"><input name="textfield10" type="text" class="bodytext" size="3"></td> </tr> </table> <a href="javascript:addRow();" >Add Order</a> Hello all, Can someone helps me with the following idea: I've a page with input boxes on it,and beside each input box there is a link that will display a small help text, and that help text will be extracted from the xml file according to the id of the text box, so , I need more help on that , How could i extract data in HTML page from an xml page? Thanks Hi pros , please help me out. I did a xml data in the <body> section , where my client can edit the <body> section's description tags to edit the html files without going digging through all the codes hidden in the tables. It works in Mozilla Firefox, but this code appear to be Blank in Internet Explorer , please help. My code in the <head> section: HTML Code: <body> <xml id="xmlDI"> <description> <b>Photo Gallery</b> <br> <br> A collection of artistes' photos<br><br> </description> <description> <b>Video Gallery</b> <br> <br> A collection of artistes' videos<br><br> </description> </body> and the codes in the tables below. HTML Code: <tr> <td width="200"><font color="#e9e9e9"><div xmldi="xmlDI" xmlnode="description"></div></font><u><a href="photos.html"><font color="#e9e9e9">Click here to enter</font></a></u> </td> ANYONE? please help me out. tons of sleepless nights , but cant make it work. How can find what string has been submitted from the HTML form when i click on submit button? So I'm using CSS and the same header is used on every page. It includes all meta info, nav bar, company logo, etc. I read at the SEO opt sites that Meta data should be specific for each page to improve SEO (search engine optimization - google ratings). Those two seem to be at odds with each other: CSS good, but use different META info for every page. for example this is my code for an average page: Code: <?php require 'head01.html'; // call HTML headers, same for all require 'center11.html'; // call center code - another page require 'footer01.html'; // call footer code - same for all ?> CenterXX differs for every page but not Header01.html which has my META data. help. kc Hi, I am new to this forum. As all other, I have registered because I need help: I am currently working on an automatic news system (if you can call that...), where I write my news story in an .ini file. What I need help with is that I want my page to get the string from the .ini file and "publish" it. If there's an easier/alternative method, please post ~Mikkelet How do you extract the efix data from a jpg file and include it on a web page so the date and time a plhotograph is taken can be displayed. Here is an example--http://www.onthesnow.com/CO/482/cam3.html Hi, I am writing a html web page to retrieve the xml content into three tables using xml data island. There are 3 xml files: <xml id="file1" src="xxx.xml"></xml> <xml id="file2" src="yyy.xml"></xml> <xml id="file3" src="zzz.xml"></xml> In the html file, I would like to let the page refresh automatically and retrieve the xml contents because the xml file contents might keep changing all the time. I've tried to use meta refresh tag to do this. However, it seems that the xml content is cached and it displays the old content even if the xml file content is changed. How can I solve this? Hi there! I've been googleing for this for a while now, but I couldn't find any solution. My problem is simple. I want my forms to be in a way that browsers 'know' that the data being typed into the form is to be sent with the Unicode UTF-8 encoding. So that every data POSTed back to my server is encoded using UTF-8. How can I do that? Thanks in advance, AvoC. how do i put HTML URL links in XML DATA ISLAND? from what i know you can only put text in XML data island. example Code: <data>Here is some data here</data> and in the tables... Code: <td width="200"><div xmldi="xmlDI" xmlnode="data"></div></font> but my clients wants to put html links in the <data> tag , how can it be done , eg Code: <data> <a href="music.html">Music here</a> </data> when he tried to do this , the whole page turns blank. please enlighten. thanks pros. I use Expression Web 3 and would like to know how to collect and save data entered on a screen. Code sample? |