Q18

<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>Q18</title>
<link rel="stylesheet" href="styleQ18.css">
</head>
<body>
<div id="container">
<p><a href="#">f:id:web-mind:20130714223625j:image</a></p>
</div>
</body>
</html>


@charset "UTF-8";

/*リセット*/
body, div {
  margin: 0;
  padding: 0;
  font-family: 
    "Hiragino Kaku Gothic ProN",
    Meiryo,
    sans-serif;
}
a {
  text-decoration: none;
}

/*本文*/
body {
  margin-top: 30px;  
}
#container {
  width: 400px;
  margin: 0 auto;
}
p a:hover {
  text-decoration: underline;
}