pictcode / app / View / top / delete_comp.html @ 50763f5b
履歴 | 表示 | アノテート | ダウンロード (2.579 KB)
1 |
<!DOCTYPE html>
|
---|---|
2 |
|
3 |
<html>
|
4 |
<head>
|
5 |
<title>-PictCode-</title> |
6 |
<meta name="apple-mobile-web-app-capable" content="yes"> |
7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> |
8 |
<meta charset = "UTF-8"> |
9 |
<meta http-equiv="pragma" content="public"> |
10 |
<meta http-equiv="Cache-Control" content="public"> |
11 |
<meta http-equiv="Expires" content="-1"> |
12 |
<meta http-equiv="Expires" content="86400"> |
13 |
<!-- css -->
|
14 |
<link href = "css/main.css" rel="stylesheet" type="text/css"> |
15 |
<link href="css/bootstrap/bootstrap.css" rel="stylesheet" > |
16 |
<link href="css/jquery-ui.min.css" rel="stylesheet" > |
17 |
<!-- <link href = "css/fixedheaderandfooter.css" rel="stylesheet" type="text/css">-->
|
18 |
</head>
|
19 |
|
20 |
<body>
|
21 |
<!-- ヘッダー -->
|
22 |
|
23 |
<header>
|
24 |
<a href=""><img class="header_button left" type="button" src="img/btn_header_004.png" alt=""></a> |
25 |
<img class="center" src="img/header_title.png" alt="Pict Code"> |
26 |
<a href=""><img class="header_button right" type="button" src="img/btn_header_014.png" alt=""></a> |
27 |
</header>
|
28 |
|
29 |
<!-- メインコンテンツ -->
|
30 |
|
31 |
<script type="text/javascript"> |
32 |
$(function(){
|
33 |
reviseMargin();
|
34 |
$(window).on("resize",reviseMargin);
|
35 |
function reviseMargin(){
|
36 |
$("#contents").css({
|
37 |
"margin-top":$("header")[150].offsetHeight + "px",
|
38 |
"margin-bottom": $("footer")[450].offsetHeight + "px"
|
39 |
});
|
40 |
}
|
41 |
});
|
42 |
</script>
|
43 |
|
44 |
<main role="main"> |
45 |
<article class="register"> |
46 |
<h2>
|
47 |
<img src="img/img_h1_delete03.png" alt="ほぞんデータ - さくじょかんりょう"> |
48 |
</h2>
|
49 |
<div id="contents"> |
50 |
<p>せんたくした プログラムを さくじょ しました。</p> |
51 |
<section class="delete"> |
52 |
<img src="img/img_img_delete.png" alt="プログラムをさくじょしました"> |
53 |
</section>
|
54 |
</div>
|
55 |
<section class="button_area01"> |
56 |
<a href="login_top.html"><p class="button btn_top03"></p></a> |
57 |
</section>
|
58 |
</article>
|
59 |
</main>
|
60 |
|
61 |
<!-- フッター -->
|
62 |
|
63 |
<footer>
|
64 |
<div id="wrapper"> |
65 |
<ul>
|
66 |
<li><a href="aboutthis.html" alt="">PictCodeについて</a></li> |
67 |
<li><a href="terms.html" alt="">利用規約</a></li> |
68 |
<li><a href="privacy.html" alt="">プライバシーポリシー</a></li> |
69 |
<li><a href="aboutus.html" alt="">運営会社情報</a></li> |
70 |
<li><a href="contact.html" alt="">お問い合わせ</a></li> |
71 |
</ul>
|
72 |
<a href="index.html"><img class="logo" src="img/footer_logo01.png" alt=""></a> |
73 |
<hr>
|
74 |
<img class="logo" src="img/footer_logo02.png" alt=""> |
75 |
</div>
|
76 |
</footer>
|
77 |
|
78 |
<!-- js -->
|
79 |
<script src="js/require_config.js"></script> |
80 |
<script data-main="js/app.js" src="js/require.js"></script> |
81 |
</body>
|
82 |
</html>
|