I started learning JavaWeb these days, and it was quite interesting. First I introduced HTML (Hyper Text Markup Language), CSS (Cascading Style Sheets), and HTTP protocol (Hyper Text Transfer). Protocol Hypertext Transfer Protocol), I mainly record the HTTP protocol, this part is still very important.
First point: HTTP protocol is an application layer protocol. When you browse the web, the browser and the server will send and receive data on the Internet through Http. HTTP is a request-based /Responsive mode, stateless protocol
In the Http1.1 version, a continuous link mechanism is provided. This is the difference from Http1.0.
Second point: HTTP URL format: http://host[:port][abs_path]
Where:
http Indicates that network resources are to be located through the HTTP protocol;
Host indicates a legal Internet host domain name or IP address (expressed in dotted decimal format);
Port is used to specify a port number, with The server host of the requested resource listens to the TCP connection on this port;
abs_path specifies the URI (Uniform Resource Identifier, Uniform Resource Identifier) of the requested resource.
URL is a special type of URI that contains enough information to find a resource.
The third point: HTTP is divided into requests and responses
HTTP request: request line, message header, request body;
HTTP Request format: -Method Request-URI HTTP-Version CRLF
Method request methods mainly include GET, POST, HEAD... When we access the web page by directly entering the URL in the browser's address bar At that time, the browser used the GET method to obtain resources from the server, and the POST method was used to send a request to the server, requiring the server to accept the data attached to the request. The POST method is most commonly used when submitting forms.
The difference between get and post methods:
1): The results presented in the browser address bar are different, the appearance
2): The real reason is to send the message to the server The request format is different
3): get request format:
GET/test/LoginServet?username=hello&password=world HTTP/1.1
4): post Request format: POST/test/LoginServlet HTTP/1.1
HTTP response: status line, message header, response body
HTTP response format: -HTTP- Version Status-Code Reason-Phrase CRLF
The response code consists of three digits:
-1xx: Indication information--indicates that the request has been received and continues to be processed
-2xx :Success--Indicates that the request has been successfully received, understood, and accepted
-3xx: Redirect--Further operations must be performed to complete the request
-4xx: Client error-- The request has a syntax error or the request cannot be implemented
-5xx: Server-side error - the server failed to implement a legal request
As for CSS, I mainly record how to insert the style sheet:
Method 1: External style sheet
-
-
-
mystyle.css:
-hr{color:sienna}
-p{margin-left:20px}
-body{background-image:url("images/back40.gif")}
Method 2: Embedded style sheet
-
-
-hr{color:red}
-p{margin- left:20px}
-body{background-image:url("images/back40.gif")}
-
- head>
Method 3: Line style
-
This is a paragraph
??
??

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

不算。html是一种用来告知浏览器如何组织页面的标记语言,而CSS是一种用来表现HTML或XML等文件样式的样式设计语言;html和css不具备很强的逻辑性和流程控制功能,缺乏灵活性,且html和css不能按照人类的设计对一件工作进行重复的循环,直至得到让人类满意的答案。

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。

3种取消方法:1、给td元素添加“border:none”无边框样式即可,语法“td{border:none}”。2、给td元素添加“border:0”样式,语法“td{border:0;}”,将td边框的宽度设置为0即可。3、给td元素添加“border:transparent”样式,语法“td{border:transparent;}”,将td边框的颜色设置为透明即可。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
