HTML Help

  • Thread starter Thread starter JDMPlaya
  • Start date Start date
  • Replies Replies 10
  • Views Views 750

We may earn a small commission from affiliate links and paid advertisements. Terms

JDMPlaya

Senior Member
I'm trying to add a quicktime video on my main page, Basically I want the windows media player/quicktime to be embebbed in the website so the user doesnt have to download it.

Can someone help me out?

Thanks.
 
no wokry for me either..says its under concstruction..with the broken quicktime film
 
i highly doubt your clip is called movie.mov

you gotta link it right just like you would an image.

and no offense, but your code sucks. hello and welcome to dreamweaver sucks too.

and your style sheet... i think you missed the whole concept of "Cascading" in Cascading Style Sheets

the sub menu of "houses" on the left is hideous, let alone hardly legible.

why use images for text? i never uderstood the concept.

your contact us form is highly misleading. non-savy folk won't even know theres a form there.

Code:
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_reloadPage(init) { //reloads the window if Nav4 resized
 if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
  document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
 else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->
</script>

dude, no one uses NN4 anymore. lol
less than .01%
fuck them. stop coding for them. upgrade.

your entire menu can be trucated

Code:
<table cellspacing="1" cellpadding="2" border="0" bgcolor="#354463" width="520">
        <tr> 
         <td bgcolor="#5F7797" class="small" align="center" onmouseover="this.style.backgroundColor='#354463';" onmouseout="this.style.backgroundColor='#5F7797'"><a href="index.htm"><font color="#e9f2fc">Home</font></a></td>
         <td bgcolor="#5F7797" class="small" align="center" onmouseover="this.style.backgroundColor='#354463';" onmouseout="this.style.backgroundColor='#5F7797'"><a href="about.htm"><font color="#e9f2fc">About 
          Us </font></a></td>
         <td bgcolor="#5F7797" class="small" align="center" onmouseover="this.style.backgroundColor='#354463';" onmouseout="this.style.backgroundColor='#5F7797'"><a href="houses.htm"><font color="#e9f2fc">Houses</font></a></td>

         <td bgcolor="#5F7797" class="small" align="center" onmouseover="this.style.backgroundColor='#354463';" onmouseout="this.style.backgroundColor='#5F7797'"><a href="contact.htm"><font color="#e9f2fc">Contact 
          Us </font></a></td>
        </tr>
       </table>

sucks.

lol

use something like

<td class="menu">
<a blah....>click</a>
<a blah....>click</a>
<a blah....>click</a>
</td>

and in your style sheet:
.menu { background: #354463; font: your fonts/szies/colors here}
a.menu { display: block; padding: 5px; }
a.menu:hover { background: #5F7797; }

3 lines of code y0.
 
highly doubt your clip is called movie.mov

you gotta link it right just like you would an image.

and no offense, but your code sucks. hello and welcome to dreamweaver sucks too.


Yea I know my code sucks and YES dreamweaver sucks ass too, I'm more of a graphic designer than a HTML hard coder using notepad, I can do simple stuff but I don't have to much knowledge on newer coding.

And yes my clip is called movie.mov and yes its just in the main directory, It's not in a folder I'm just trying to test something out.
dude, no one uses NN4 anymore. lol
less than .01%
fuck them. stop coding for them. upgrade.


Yea yea I know. what do you code for.

And also about the contact us page

What are you suggestion that a non-savy person could pick up that is a form?
 
the style of the form boxes itself. those grey boxes are highly mis-leading to like, my mom, who never gets online.

i code for mozilla 1.4+ and IE6.

everything else, sees a non-styled version and an upgrade page.

go to HS.com home page
at the bottom click "toggle CSS"

thats called accessibility, or "graceful degrading"

tells the asshat to upgrade, and if they can't its still USEABLE.
 
Back
Top