0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

06.グローバル属性解答コード

Posted at
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
    <meta charset="utf8">
    <meta name="description" content="初めてのHTML文書です">
    <meta name="author" content="スタートプログラミング">
    <meta name="keyword" content="html,css,勉強,初心者,初めて,Web,ホームページ">
    <link rel="shortcut icon" href="favicon.ico">
    <link rel="stylesheet" href="style.css">
    <title>はじめてのHTML</title>
</head>

<body>
    <p class="profile">わたしのプロフィール</p>
    <p class="name">名前:下野純</p>
    <p class="age">学年:中学3年生</p>
    <p class="school">学校:スタートプログラミング</p>
</body>
</html>
style.css
body {
  background-color: skyblue;
}
.profile {
  font-size: 24px;
}
.name {
  color: green;
}
.age {
  color: blue;
}
.school {
  color: red;
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?