Use basic class knowledge to make a Web page

Source: Internet
Author: User

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

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.