This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="UTF-8"> <!-- charsetをUTF-8にしないとスライダーの両端にある矢印が文字化けor出ません --> | |
| <link rel="stylesheet" href="./testcss.css"> | |
| <link rel="stylesheet" type="text/css" href="./slick-1.8.1/slick/slick.css"/> | |
| <link rel="stylesheet" type="text/css" href="./slick-1.8.1/slick/slick-theme.css"/> | |
| </head> | |
| <body> | |
| <div class="your-class"> <!-- 自分の環境に合わせて画像ファイルのパスを書き換えてください --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* スライダーのサイズと配置を指定しています。 */ | |
| .your-class{ | |
| width: 700px; | |
| height: 250px; | |
| margin: 0 auto; /* 横方向に中央寄せします。 */ | |
| } | |
| /* スライダーで表示する画像のサイズを指定しています。 */ | |
| .your-class div img{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*body(背景)にmargin: 0pxを指定することで | |
| 画像を貼った時にできる隙間が無くなります。*/ | |
| body{ | |
| margin: 0px; | |
| } | |
| /*これは画像を小さく表示させているだけです*/ | |
| img{ | |
| width: 500px; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- 以下のコードでcssを読み込みます --> | |
| <link rel="stylesheet" type="text/css" href="./style.css"> | |
| </head> | |
| <body> | |
| <img src="./bentley.jpg"> | |
| </body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- JQuery-uiのcss ※Datepickerにデザインを適用するために必要--> | |
| <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css"> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <!-- JQuery-uiのcss ※Datepickerにデザインを適用するために必要--> | |
| <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css"> | |
| </head> | |
| <body> | |
| <!-- 入力エリアを作成 idは好きな名前でOK --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 今回の記事に関係あるのは2行目〜7行目です。 10行目のごちゃごちゃしたやつは気にしないでください。--> | |
| <?php | |
| /* | |
| Template Name: お問い合わせ | |
| */ | |
| ?> | |
| <?php get_header(); ?> | |
| <main> | |
| <p>お問い合わせのページ</p> | |
| <?php echo do_shortcode('[contact-form-7 id="764" title="お問い合わせフォーム"]'); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- 記事に関係あるのは20行目です。ここで固定ページ"お問い合わせ"へのリンクを貼っています。 --> | |
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title><?php wp_title('|',true, 'right'); ?></title> | |
| <link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_uri(); ?>"> | |
| <?php wp_head(); ?> | |
| </head> | |
| <body <?php body_class(); ?>> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="ja"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <link rel="stylesheet" type="text/css" href="./style.css"> | |
| <title>Liberty</title> | |
| </head> | |
| <body> | |
| <!-- ヘッダー --> | |
| <div class="top"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body{ | |
| margin: 0px; | |
| } | |
| h1{ | |
| font-size: 150px; | |
| color: white; | |
| text-align: center; | |
| line-height: 300px; | |
| margin: 0px; |
OlderNewer