Skip to content

Instantly share code, notes, and snippets.

@fkmhrk
Last active October 21, 2019 08:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fkmhrk/382112b404204c8f049f930dc8eab559 to your computer and use it in GitHub Desktop.
Save fkmhrk/382112b404204c8f049f930dc8eab559 to your computer and use it in GitHub Desktop.
20191024練習問題用
<html>
<head>
<title>CSS Lesson</title>
<style>
body,header,main {
margin: 0;
padding: 0;
}
header {
/* ここに必要なものを書いてみよう */
width: 100%;
height: 64px;
box-shadow: 0px 3px 15px rgba(0,0,0,0.4);
}
header h1 {
/* ここに必要なものを書いてみよう */
}
main {
/* ここに必要なものを書いてみよう */
}
.todo_list li {
/* ここに必要なものを書いてみよう */
}
</style>
</head>
<body>
<header>
<h1>ホーム</h1>
</header>
<main>
<h2>やること一覧</h2>
<ul class="todo_list">
<li>html要素について学ぶ</li>
<li>head要素について学ぶ</li>
<li>title要素について学ぶ</li>
<li>body要素について学ぶ</li>
<li>h1要素について学ぶ</li>
<li>p要素について学ぶ</li>
</ul>
</main>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment