through the initial involvement of PHP today, I learned the construction of simple Web pages and coded edits of information.
First of all, we know about the foreground development of HTML, CSS, JS effects, as well as the background development of PHP,. NET, Python, node JS, SQL Serve (Microsoft), Oracle (Google). Individuals can build servers in Windows7 or Linux system environments via MySQL, PHP, and Apache.
Then there are some simple concepts.
HTTP Hypertext Transfer Protocol (full name Hypter Text Transfer Protocol)
HTML Hypertext Markup Language (full name Hyper Text Marked Language)
A simple way to create a Web page is to first create an HTML-formatted text document and then manipulate it in sublime
<title> Page Title </title>
<style>
Div
/* Width */
width:200px;
/* Height */
height:200px;
/* Background color */
Background-color: #FF0000;
/* FLOAT */
Float:left/right
/* Clear FLOAT */
. clear{width:0px;
height:0px;
Clear:both;
</style>
<body>
<div></div>
<div id= "Second" </div>
<div class= "clear" ></div>
<div id= "Third" ></div>
<div id= "Fourth" ></div>
</body>
This allows you to edit a simple page code, such as a separate edit block color, to edit its ID individually.
16-11-07