Home > Article > Web Front-end > Use HTML+CSS to design a simple user registration page [Example]
This article will introduce to novices how to use HTML and CSS to create a simple registration page. In the process of developing a website, if the website content requires a complete information station, then the user registration function is definitely indispensable. This user registration interface may be difficult for front-end novices who are just getting started.
Then below we will introduce to novices in detail how to implement the user registration function interface through specific HTMLcss code examples.
A paragraphSimple user registration page HTML codeThe example is as follows:
<form> <div style="width:500px;float:left;margin:0 20px;"> <div style="font-size:28px;">新用户注册界面</div> <br/> <span class="p">*</span> <label for="username" class="l">用户名:</label> <div style="height:35px;width:300px;position:relative;display:inline;"> <input id="username" type="text" style="height:30px;width:250px;padding-right:50px;"> <span style="position:absolute;right:18px;top:2px;height:16px;width:16px;display:inline-block;" ></span> </div> <br/><br/> <span class="c">*</span> <label for="login_password" class="l">登录密码:</label> <div class="d"> <input id="login_password" type="text" class="i"> </div> <br/><br/> <span class="c">*</span> <label for="confirm_password" class="l">确认密码:</label> <div class="d"> <input id="confirm_password" type="text" class="i"> </div> <br/><br/> <input type="submit" value="点击注册" style="margin-left:100px;height:30px;width:150px;background-color:#1094f2; color:#fff; display:inline-block;"/> </div> </form>
The style.css code example is as follows:
.p{ color:red; margin-left:20px; display:inline-block; } .c{ color:red; margin-left:4px; display:inline-block; } .l{ font-size:18px; } .d{ height:35px; width:300px; display:inline; } .i{ height:30px; width:300px; }
We access the above code through the browser as shown below:
As shown in the picture, this is a very simple registration page designed using HTML and CSS. From the above code, we can find that the registration page is implemented mainly by using the form tag in HTML, so this tag is used to create the form. And the form contains several elements. For example, text fields, check boxes, radio buttons, submit registration buttons, etc., which are important input label elements! This element tag specifies the input field into which the user can enter data.
There is also the label element that appears in the above code. This tag defines the annotation, that is, the mark, for the input element. In fact, as long as you master the relevant element tags in the form, you can create registration interfaces with different requirements. For example, you can add email registration items, verification code registration items, address registration items, etc.
Then set the css style attributes for the corresponding elements to create a simple HTML user registration page.
The above is an introduction to the implementation method of a simple HTMLcss registration page function. This article has certain reference value and I hope it will be helpful to friends in need!
The above is the detailed content of Use HTML+CSS to design a simple user registration page [Example]. For more information, please follow other related articles on the PHP Chinese website!