Logo image and H1 heading on the same line

前端 未结 13 2089
佛祖请我去吃肉
佛祖请我去吃肉 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:26

    This is my code without any div within the header tag. My goal/intention is to implement the same behavior with minimal HTML tags and CSS style. It works.

    whois.css

    .header-img {
        height: 9%;
        width: 15%;
    }
    
    header {
        background: dodgerblue;
    
    }
    
    header h1 {
        display: inline;
    }
    

    whois.html

    
    
         Javapedia.net WHOIS Lookup 
        
    
    
        
    javapedia.net

    WHOIS Lookup

    output:

提交回复
热议问题