2017-02-05 7 views
0

「よく」使用しようとしていますが、私はそれを得ることができませんでした。私はprobelmがリンクする部分にいると思います。 CSSの機能は、初心者であり、これを通過できませんでした。こので役立ちます誰にも事前に感謝..リンクタグのエラーは何ですか? .. CSSはリンクされていません。初心者です...

<!DOCTYPE html> 
    <html> 
     <head> 
      <title>Jothidhal</title> 
      <meta charset = "utf-8"> 
      <meta name = "viewport" content = "width = device-width , initial-scale = 1> 
      <link rel = "stylesheet" type = "text/css" href = "css/bootstrap.min.css> 
     </head> 
     <body> 
      <div class = "container"> 
       <div class = "row"> 
        <div class = "col-md-12 well" >col-12</div>//Am trying to use "well", but i couldn't get it.i guess the probelm is in linking part, even i couldn't use any other features of CSS, am a beginner and couldn't get through this. Thanks in advance to anyone who helps in with this.. 
       </div> 
      </div> 
      <script type = "text/javascript" src = "js/bootstrap.min.js"></script> 
      <script type = "text/javascript" src = "js/jquery.js"></script> 
     </body> 
    </html> 

答えて

0

あなたは閉じ"

<meta name = "viewport" content = "width = device-width , initial-scale = 1"> 
<link rel = "stylesheet" type = "text/css" href = "css/bootstrap.min.css"> 
+0

を逃している秀ありがとうございました!! :) –

+0

@DurairajSaro歓迎です:) –

0
If you are beginner and feeling linking problem of css and js file, just include the cdn files of bootstrap in your html file and write your code. I have included the cdn file in below code, look into this.   
<!DOCTYPE html>`` 
       <html> 
        <head> 
         <title>Jothidhal</title> 
         <meta charset="utf-8"> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> 
        </head> 
        <body> 
         <div class = "container"> 
          <div class = "row"> 
           <div class = "col-md-12 well" >col-12</div>//Am trying to use "well", but i couldn't get it.i guess the probelm is in linking part, even i couldn't use any other features of CSS, am a beginner and couldn't get through this. Thanks in advance to anyone who helps in with this.. 
          </div> 
         </div> 
         <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> 
     <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> 
        </body> 
       </html> 
+0

ありがとうございました! :)\ –

+0

@Durairaj Saroあなたは大歓迎です:) –

+0

@Durairajもしあなたが本当に助けられたら、解決策を受け入れてください。 –

関連する問題