h1とpの関係
解答例
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="UTF-8"> <title>h1とpの配置をいれか</title> <style> header { width: 960px; height: 120px; } header h1 { margin: 0; padding: 50px 0 0 52px; font-size: 16px; font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif; font-weight: normal; } header p { margin: -70px 0 0 0; float: left; } </style> </head> <body> <header> <h1>サイトタイトルサイトタイトル</h1> <p><img src="logo.png" alt="Homepage Title" title="" width="240" height="45"></p> </header> </body> </html>