LoginSignup
0

More than 3 years have passed since last update.

コーディング開始。headの中身大すぎ問題【プログラミング日記~ポートフォリオ③~】#4

Posted at

今回からついにコーディングしていきますすす‼
まずはheadタグから埋めていきます‼
今後もいろんなサイトで使うと思うのでコピーしといたら便利だと思います!!!

実際のコード

index.html
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
     <!-- 古いバージョンのIE向けの最適化 -->
    <meta name="description" content="">
    <!-- 古いバージョンのIE向けの最適化 -->
    <meta http-equiv="X-UA-compatible" content="IE=edge"> 
    <!-- スマホに対応させる -->
    <meta name="viewpoint" content="width=device-width, initial-scale=1">
    <!-- SNSシェア時のurl,title,description,imageの指定 -->
    <meta property='og:type' content='website'>
    <meta property="og:url" content="">
    <meta property="og:title" content="">
    <meta property="og:description" content="">
    <meta property="og:image" content="">
    <!-- ブラウザのタブの表示 -->
    <title></title>
  <!-- css -->
    <link rel="stylesheet" href="/css/stylesheet.css">
    <!-- フォントオーサムのインスト―ル -->
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
  </head>
  <body>  </body>
</html>

おわりに

こんなにコード書いたのにheadタグなのでブラウザにはまだ何も表示されていません!!!
次回からbodyの中を埋めていくのでどんなサイトが完成するか楽しみです:ghost:

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