Skip to content

Commit

Permalink
HTMLのタグの書き方を統一 (閉じタグあり)
Browse files Browse the repository at this point in the history
  • Loading branch information
ics-ikeda committed Sep 1, 2017
1 parent bfd5b26 commit 2a9e5a6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions grid-layout-flexbox-float/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="UTF-8"/>
<title>Grid Layout Sample - ICS MEDIA</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style.css"/>
</head>

<body>
Expand Down
4 changes: 2 additions & 2 deletions grid-layout-sample-01/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="UTF-8"/>
<title>Grid Layout Sample - ICS MEDIA</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style.css"/>
</head>

<body>
Expand Down
18 changes: 9 additions & 9 deletions grid-layout-sample-ie-edge/index.html
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="UTF-8"/>
<title>Grid Layout Sample(IE/Edge) - ICS MEDIA</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style.css"/>
</head>

<body>

<div class="container">
<header class="header">header</header>
<main class="main">main</main>
<aside class="aside">aside</aside>
<nav class="nav">nav</nav>
<footer class="footer">footer</footer>
</div>
<div class="container">
<header class="header">header</header>
<main class="main">main</main>
<aside class="aside">aside</aside>
<nav class="nav">nav</nav>
<footer class="footer">footer</footer>
</div>

</body>
</html>
4 changes: 2 additions & 2 deletions grid-layout-sample-tile/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta charset="UTF-8"/>
<title>Grid Layout Tile Sample - ICS MEDIA</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/style.css"/>
</head>

<body>
Expand Down

0 comments on commit 2a9e5a6

Please sign in to comment.