Logo image and H1 heading on the same line

前端 未结 13 2041
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-07 19:45

I want to create my first web page but I encountered a problem.

I have the following code:

\"logo\"

相关标签:
13条回答
  • 2020-12-07 20:47

    If your image is part of the logo why not do this:

    <h1><img src="img/logo.png" alt="logo" /> My website name</h1>
    

    Use CSS to style it better.

    And it is also best practice to make your logo a hyperlink that take the user back to the home page.

    So you could do:

    <h1 id="logo"><a href="/"><img src="img/logo.png" alt="logo" /> My website name</a></h1>
    
    0 讨论(0)
提交回复
热议问题