Html 链接标签中有什么错误。。CSS没有被链接。。我是一个初学者。。。

Html 链接标签中有什么错误。。CSS没有被链接。。我是一个初学者。。。,html,css,twitter-bootstrap,Html,Css,Twitter Bootstrap,我试图使用“好”,但我没能做到。我想问题在于链接部分,即使我不能使用CSS的任何其他功能,我是一个初学者,也无法完成这一点。提前感谢在这方面提供帮助的任何人 <!DOCTYPE html> <html> <head> <title>Jothidhal</title> <meta charset = "utf-8"> <meta n

我试图使用“好”,但我没能做到。我想问题在于链接部分,即使我不能使用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>  

约蒂达尔
col-12//我试图使用“well”,但我无法理解。我想问题在于链接部分,即使我不能使用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>  

如果您是初学者,并且感觉css和js文件的链接有问题,只需将引导的cdn文件包含在html文件中并编写代码即可。我已将cdn文件包含在下面的代码中,请查看。
``
约蒂达尔
col-12//我试图使用“well”,但我无法理解。我想问题在于链接部分,即使我无法使用CSS的任何其他功能,我还是一个初学者,无法完成此任务。提前感谢所有帮助我完成此任务的人。。

谢谢你,先生!!:)\@Durairaj如果它真的对你有帮助,请接受这个解决方案。先生,实际上我的代码的问题是缺少“我已经解决了”。坦率地说,我以前从未见过CDN。但我真的很感谢向我介绍CDN。。。但是堆栈溢出只允许我接受一种解决方案。。很抱歉,我不能接受你的。
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>