A Web page, first have to have a frame, then various styles of various dynamics. It's like a house that the teacher says, to paint (CSS), and to buy electrical (JavaScript). Let's start decorating our house now!
HTML Hypertext Markup Language (to write content to the Web page, hypertext refers to the page is not only text, as well as pictures, music, video, etc.),
CSS Cascading Style sheets (add a variety of style effects, the most important of which is floating, because the div is a block element, the exclusive row, and floating can line up the Div. )
JavaScript (literal translation scripting language, add dynamic effects to Web pages, examples: Forms validation, web effects, mini games, etc.)
jquery (Fast and concise JavaScript Framework code Base)
Bootstrap (responsive design is simple and flexible)
<! DOCTYPE html>
<meta charset= "UTF-8" >
<title>Document</title>
<!--priority support for mobile devices--
<meta name= "viewport" content= "Width=device-width, initial-scale=1" >
<!--introducing CSS files--
<link type= "Text/css" rel= "stylesheet" href= "Bootstrap/css/bootstrap.min.css" >
<!--introduce JS file--
<!--must first introduce jquery.js and then introduce bootstrap.js files--
<script src= "Bootstrap/js/jquery.min.js" ></script>
<script src= "Bootstrap/js/bootstrap.min.js" ></script>
<style type= "Text/css" >
Writing styles
</style>
<script type= "Text/javascript" >
Write JS
</script>
<script type= "Text/javascript" src= "Js/jquery.js" ></script>
<script type= "Text/javascript" > Writing jquery </script>
<body>
Writing HTML content additional bootstrap content
</body>
Use basic class knowledge to make a Web page