質問編集履歴
1
ご指摘の通り、bootstrapを使用しています。
title
CHANGED
File without changes
|
body
CHANGED
@@ -3,7 +3,27 @@
|
|
3
3
|

|
4
4
|
HTML
|
5
5
|
```ここに言語を入力
|
6
|
+
<html lang="ja">
|
6
|
-
|
7
|
+
<head>
|
8
|
+
<meta charset="utf-8">
|
9
|
+
<title>インターン</title>
|
10
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
11
|
+
<meta name="copyright" content="Template Party">
|
12
|
+
<meta name="description" content="仕事を経験してから働きたい個人と働く姿を見てから採用したい企業のマッチングサービス">
|
13
|
+
<meta name="keywords" content="キーワード1,キーワード2,キーワード3,キーワード4,キーワード5">
|
14
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
15
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
16
|
+
<!-- BootstrapのCSS読み込み -->
|
17
|
+
<link href="css/bootstrap.min.css" rel="stylesheet">
|
18
|
+
<!-- カスタマイズ用CSS -->
|
19
|
+
<link href="css/mycss.css" rel="stylesheet">
|
20
|
+
<!-- jQuery読み込み -->
|
21
|
+
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
22
|
+
<!-- BootstrapのJS読み込み -->
|
23
|
+
<script src="js/bootstrap.min.js"></script>
|
24
|
+
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
25
|
+
<script type="text/javascript" src="js/openclose.js"></script>
|
26
|
+
</head>
|
7
27
|
<body id="top">
|
8
28
|
<div class="container">
|
9
29
|
<!--- ヘッダーここから --->
|