Search results

  1. Tedy

    HOW DO I ADD PICTURE TO MY HTML DOC?

    Right click on your image, select "Copy image adress" then add this script to your HTML doc: <img src="IMAGEADRESS"> For example: <img src="...dog.png">
  2. Tedy

    HOW DO I MAKE CHANGE HTML PETER TEXT COLOR?

    WELCOME TO <font color="red">PETER</font> IS WORLD
  3. Tedy

    How to find image background in HTML/CSS coding?

    Add this line after your CSS code: <body background="imagelink"> Or open your page with notepad and add this in the body class: background-image: url('imagelink'); It should look like this: body { background-image: url('imagelink'); font-family: "Helvetica Neue", HelveticaNeue, helvetica...
  4. Tedy

    Why is my img tag not working in html?

    Replace your link with this one: "files\images\interview_v2_english_09.jpg" . <img src="files\images\interview_v2_english_09.jpg">
  5. Tedy

    what is the best software to use for downloading music other than frostwire or limewire?

    Try Songr (google it). Features: Download or listen to streaming music from 16 mp3 search engines Full album search Automatic conversion of results to direct links to listen with your favorite media player Audio extraction from YouTube videos Search by lyrics: Type some words and get the...
  6. Tedy

    Is there an html code to use the code from another file?

    You can use the 'include' function, but you have to change the extension for every page that will use that file. For example, we have a page called 'header.php', and another one called 'body.php' . If you want to include the header file in second one, open body.php and add this code: <?php...
  7. Tedy

    How do I create an image link to a folder on my desktop using CSS in html?

    If you want to use an image as a link, you have to to this: <a href="link"> <img src="imageurl"> </a> You cannot set links in CSS! With your css atributes, the script should look like this: <a href="link'> <img class="image" src="imageurl"> </a>
  8. Tedy

    How to not run line in HTML?

    Add your code between this tags: '<!--' and'-->' ( <!-- Your Script --> ) . For example, <!-- <font color="red"> TEXT </a> -->
  9. Tedy

    html picture alignment question?

    Just delete ' align="right" ' and add your script between the tags: <center> </center> It should look like this: </center><img src="T35_1px220.jpg" alt="T35 on a Moscow street" /></center>
Back
Top