LoginSignup
0
0

More than 5 years have passed since last update.

PHP スマホサイトにする

Last updated at Posted at 2017-06-21

2017062101.png
screencapture-localhost-picture_upload-album2-php-1498038639263.png

簡単笑

html
<meta name="viewport" content="width=device-width,
 initial-scale=1.0,user-scalable=yes" />

これを入れるだけ笑

スマホサイトの基本的な文
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>タイトルです</title>
<meta name="viewport" content="width=device-width,
 initial-scale=1.0,user-scalable=yes" />
</head>
<body>
<h1>スマートフォンサイトテスト</h1>
<p>初めてのスマートフォン向けサイトです</p>
</body>
</html>

参考サイト

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0