Question

4.    Write a header element place the company logo found in the file: logo.png as an...

4.    Write a header element place the company logo found in the file: logo.png as an image link to
    the home page, index.html

Homework Answers

Answer #1

The html code for the given problem statement is:

<html>
    <head>
        <style>
            .header img {
            float: left;
            width: 150px;
            height: 150px;
            background: #666;
          }
          
          .header h1 {
            position: relative;
            top: 15px;
            left: 10px;
          }
        </style>        
    </head>
    <body>
        <div class="header">
            <h1>
                <a href = "index.html" target = "_self"> 
                    <img src = "/images/logo.png" alt = "Homepage"/> 
                 </a>
            </h1>
          </div>
    </body>
</html>
Know the answer?
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for?
Ask your own homework help question
Similar Questions
Page Header Go to the document body and insert a header element containing the following: An...
Page Header Go to the document body and insert a header element containing the following: An inline image from the mp_logo.png file with the alternate text Mobile Panini. Mark the image as a hypertext link pointing to the mp_index.html file. A navigation list containing an unordered list with the following list items: Home, Menu, Events, and Catering. Link the items to the mp_index.html, mp_menu.html, mp_events.html, and mp_catering.html files respectively. Page Footer Below theheader element insert an article element. Below the...
Write a C++ header (.h) file to specify a class GiftCard, with at least 3 meaningful...
Write a C++ header (.h) file to specify a class GiftCard, with at least 3 meaningful private data members and 3 public methods, including two constructors. At least one numeric data member and one calculator method to make this class meaningful / useful.
C LANGUAGE Create your own library named cis340yourlastname. Create a header file named cis340yourlastname. Write a...
C LANGUAGE Create your own library named cis340yourlastname. Create a header file named cis340yourlastname. Write a program that receives two numbers from the user and uses your written library to calculate the reminder after division, the addition, and the subtraction of these two input numbers. (Hint your library should include three functions. Your header file should not contain the code for any of these functions, it should contain only the instructions for how to use the library).
What is wrong with this header file? The program wont compile but if i transfer the...
What is wrong with this header file? The program wont compile but if i transfer the body of the header file into the main file it will compile just fine. This is the error message that pops up: [Error] 'cout' was not declared in this scope // Specification file for the Account class. #ifndef ITEM_H #define ITEM_H #include <string> using std::string; class Can {    private:        double price = 0.0;        string company;        string content;...
4. Write a Java program to test if the first and the last element of an...
4. Write a Java program to test if the first and the last element of an array list of integers are same 5. Write a Java program to test if the first and the last element of two array list of integers are same
Write the first six lines of a hypothetical external data file named data.csv that will be...
Write the first six lines of a hypothetical external data file named data.csv that will be read without error by the following R command: mydata <- read.table ("data.csv" , skip=3 , header=FALSE , sep="," , colClasses=c ("character" , rep ("numeric" , 3 ) ) ) Lines of data.csv: 1 : 2 : 3 : 4 : 5 : 6 :
(f) Write the first six lines of a hypothetical external data file named data.csv that will...
(f) Write the first six lines of a hypothetical external data file named data.csv that will be read without error by the following R command: mydata <- read.table ("data.csv" , skip=3 , header=FALSE , sep="," , colClasses=c ("character" , rep ("numeric" , 3 ) ) ) Lines of data.csv: 1 : 2 : 3 : 4 : 5 : 6 :
Open the debug3-4.css file. The body element should have a width that is 90% of the...
Open the debug3-4.css file. The body element should have a width that is 90% of the width of the browser window ranging from a minimum of 600 pixels up to a maximum of 1024 pixels. Fix the syntax errors in the body style rule that defines the width of the web page. The style rule for the body element sets up a grid layout for the page. However, there are several errors in defining the grid areas, grid columns, and...
Arrays, loops, functions: Lotto Element Repeated Function Write a function that that takes as parameters an...
Arrays, loops, functions: Lotto Element Repeated Function Write a function that that takes as parameters an array of ints, an int value named element, and an int value named end. Return a bool based on whether the element appears in the array starting from index 0 and up to but not including the end index. Generate Random Array Write a function that takes as parameters an array of integers and another integer for the size of the array. Create a...
Write a script file that creates a row vector v containing all the powers of 4...
Write a script file that creates a row vector v containing all the powers of 4 that are (strictly) less than 106 . The output vector should have the form: v = [4, 16, 64, 256 . . .]. Use the while loop Please give answer for this
ADVERTISEMENT
Need Online Homework Help?

Get Answers For Free
Most questions answered within 1 hours.

Ask a Question
ADVERTISEMENT