


How to create an invitation letter in html5? How to make an invitation letter (code example)
The content of this article is to introduce how to make an invitation letter in HTML5? How to create an invitation (code example). It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.
Purpose: Making this simple invitation letter is just to let novices get started with web development.
Before making the page, let’s take a look at the overall appearance of the entire invitation.
1. First write the HTML code
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>邀请函</title> </head> <body> <div id="container"> <h1 id="hello-nbsp-world">hello world</h1> <p>欢迎来到虚拟世界,在这里发挥你的想象力,探索无限的可能。</p> <a href="#" id="button">点击进入</a> </div> </body> </html>
Instructions:
: This is shaped like a declaration of a document.
tag: represents the beginning of html, represents the end of html.
Tag: It contains a description of various attributes and configuration information of the html5 page. Therefore, it can be regarded as an "identity card" to a certain extent.Tag: This is a title, it has six levels from 1 to 6.
Tag: This represents a paragraph.
2. Beautify the page: CSS
1. Add a background image to the page:
html,body{ height: 100%; }body { background: url(images/1.jpg) center center; background-size: cover; }
We are adding a background image to the page When adding a background image, the background image we select may have relatively large pixels and may not fit in our browser window; so we center the background attribute of the body in both horizontal and vertical directions, because the browser does not have it by default. The height attribute is given to the body, so the height: 100% attribute must be set to the body and the body's parent (html). Set the attribute background-size: cover on the body to realize the background image adaptively filling the full screen.
2. Add font style to the web page
html,body{ height: 100%; font-family: sans-serif; color: #801449; }
font-family: The attribute can change the font.
color: You can change the color of the font. Since CSS has an inheritance mechanism, subsequent elements have this attribute.
3. Adjust the position of the invitation content area.
body { background: url(images/1.jpg) center center; background-size: cover; margin: 0; padding: 0; position: relative; }#container { width: 100%; text-align: center; position: absolute; top: 50%; transform: translateY(-50%); }
First of all, we use margin: 0;padding: 0; This is a very common practice, which can clarify some of the default margin values preset by the browser for page elements, making CSS independent control more precise.
Here we use the id selector (# id name), and we set its width to 100%; use text-ailgn:center to center its text horizontally.
So how to achieve vertical play? Positioning is used here: we need to control the top attribute of the container, which must be based on absolute positioning. To make the container absolutely positioned, its parent (body) must be set to relative positioning. Then we use the attribute to make the top 50% away from the top.
It’s not over yet, we can use the transform attribute of html5 to set translateY(-50%); that is, move it upward by half its height.
In this way, the entire container will be displayed in the center of the page.
4. Set some text fonts and sizes for its content labels.
h1 { font-size: 54px; text-transform: uppercase; margin-bottom: 20px; }p { font-size: 21px; margin-bottom: 40px; }a { font-size: 18px; color: #8f3c3c; }
Description:
font-size: Set the font size.
text-transform:uppercase: Convert text to uppercase letters.
margin-bottom:20px : This involves the box model, which means that the bottom border has a width of 20px.
5. Make an invitation button.
a { font-size: 18px; color: #8f3c3c; border: 1px solid #c66c6c; border-radius: 3px; padding: 10px 100px; text-decoration: none; }
border: Set the border for it. The three parameters of this attribute represent the border width of 1px, solid line, and color respectively.
border-radius: Sets a 3px rounded corner for its border.
padding: the top and bottom padding is 10px; the left and right padding is 100px.
text-decoration:none : This will remove the underline of the link.
Overall css file:
html,body{ height: 100%; font-family: sans-serif; color: #801449; } body { background: url(images/1.jpg) center center; background-size: cover; margin: 0; padding: 0; position: relative; } #container { width: 100%; text-align: center; position: absolute; top: 50%; transform: translateY(-50%); } h1 { font-size: 54px; text-transform: uppercase; margin-bottom: 20px; } p { font-size: 21px; margin-bottom: 40px; } a { font-size: 18px; color: #8f3c3c; border: 1px solid #c66c6c; border-radius: 3px; padding: 10px 100px; text-decoration: none; }
3. Create interaction for the page
var btn = document.getElementById('button'); btn.onclick = function(e) { //preventDefault() 可以阻止单机链接后浏览器默认的URL跳转。 e.preventDefault(); btn.innerHTML = "正在进入..." btn.style.border = "0"; }
First, we add the id as button to the link.
Use document.getElementById(id name) to get a link and assign it to the variable btn.
Then add the stand-alone attribute to btn and call the execution function.
e.preventDefault(); //将阻止其默认的链接跳转。 btn.innerHTML = "正在进入..." //改变文本内容。 btn.style.border = "0";
The above is the detailed content of How to create an invitation letter in html5? How to make an invitation letter (code example). For more information, please follow other related articles on the PHP Chinese website!

HTML5 brings five key improvements: 1. Semantic tags improve code clarity and SEO effects; 2. Multimedia support simplifies video and audio embedding; 3. Form enhancement simplifies verification; 4. Offline and local storage improves user experience; 5. Canvas and graphics functions enhance the visualization of web pages.

The core features of HTML5 include semantic tags, multimedia support, offline storage and local storage, and form enhancement. 1. Semantic tags such as, etc. to improve code readability and SEO effect. 2. Simplify multimedia embedding with labels. 3. Offline storage and local storage such as ApplicationCache and LocalStorage support network-free operation and data storage. 4. Form enhancement introduces new input types and verification properties to simplify processing and verification.

H5 provides a variety of new features and functions, greatly enhancing the capabilities of front-end development. 1. Multimedia support: embed media through and elements, no plug-ins are required. 2. Canvas: Use elements to dynamically render 2D graphics and animations. 3. Local storage: implement persistent data storage through localStorage and sessionStorage to improve user experience.

H5 and HTML5 are different concepts: HTML5 is a version of HTML, containing new elements and APIs; H5 is a mobile application development framework based on HTML5. HTML5 parses and renders code through the browser, while H5 applications need to run containers and interact with native code through JavaScript.

Key elements of HTML5 include,,,,,, etc., which are used to build modern web pages. 1. Define the head content, 2. Used to navigate the link, 3. Represent the content of independent articles, 4. Organize the page content, 5. Display the sidebar content, 6. Define the footer, these elements enhance the structure and functionality of the web page.

There is no difference between HTML5 and H5, which is the abbreviation of HTML5. 1.HTML5 is the fifth version of HTML, which enhances the multimedia and interactive functions of web pages. 2.H5 is often used to refer to HTML5-based mobile web pages or applications, and is suitable for various mobile devices.

HTML5 is the latest version of the Hypertext Markup Language, standardized by W3C. HTML5 introduces new semantic tags, multimedia support and form enhancements, improving web structure, user experience and SEO effects. HTML5 introduces new semantic tags, such as, ,, etc., to make the web page structure clearer and the SEO effect better. HTML5 supports multimedia elements and no third-party plug-ins are required, improving user experience and loading speed. HTML5 enhances form functions and introduces new input types such as, etc., which improves user experience and form verification efficiency.

How to write clean and efficient HTML5 code? The answer is to avoid common mistakes by semanticizing tags, structured code, performance optimization and avoiding common mistakes. 1. Use semantic tags such as, etc. to improve code readability and SEO effect. 2. Keep the code structured and readable, using appropriate indentation and comments. 3. Optimize performance by reducing unnecessary tags, using CDN and compressing code. 4. Avoid common mistakes, such as the tag not closed, and ensure the validity of the code.


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Zend Studio 13.0.1
Powerful PHP integrated development environment

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 English version
Recommended: Win version, supports code prompts!
