The Compelling Reasons to Learn Web Design In an era dominated by the digital realm, the ability to craft visually appealing and functional websites is a valuable skill that transcends industries. Learning web design is not just about creating aesthetically pleasing pages; it opens doors to a world of creativity and opportunities. In this blog, we'll delve into the compelling reasons why aspiring individuals should consider learning web design and how it can pave the way for personal and professional growth. Express Your Creativity: Web design is an art form that allows you to express your creativity in a digital space. From choosing color palettes to selecting fonts and arranging elements on a page, web designers have the power to create visually stunning and unique experiences. Learning web design provides a canvas for self-expression, enabling you to bring your ideas to life and leave a lasting impression on users. Meet the Demands of the Digital Age: The digital landscape is...
make a form layout
- Get link
- X
- Other Apps
Dheeraj Kumar
learn web design
-
1. make a form layout
1.Step use a sublime text software , notepad+
2.save file
3.form layout code
<!DOCTYPE html>
<html>
<head>
<title>form layout</title>
<style type="text/css">
.box{background: linear-gradient(90deg, skyblue, white); font-size: 30px;}
.form{background: linear-gradient(90deg, skyblue, white); font-size: 15px;}
input{font-size: 20px; border-radius: 5px;}
</style>
</head>
<body>
<div class="box"><b>registration form</b></div>
<div class="form">
<form action="bootmgr.php" method="post">
<br>Name:          <input type="text" name="name" required=""><br><br>
Email:          <input type="email" name="email" required=""><br><br>
Password:    <input type="password" name="password" required=""><br><br>
Number        <input type="number" name="phone number" required=""> <br><br>
Male:  <input type="radio" name="gender"required>   
Female: <input type="radio" name="gender">
Submit:<input type="submit" name="submit">
<input type="reset" value="reset"></div></div></form>
</body>
</html>
output:
please share and comment :(
<!DOCTYPE html>
<html>
<head>
<title>form layout</title>
<style type="text/css">
.box{background: linear-gradient(90deg, skyblue, white); font-size: 30px;}
.form{background: linear-gradient(90deg, skyblue, white); font-size: 15px;}
input{font-size: 20px; border-radius: 5px;}
</style>
</head>
<body>
<div class="box"><b>registration form</b></div>
<div class="form">
<form action="bootmgr.php" method="post">
<br>Name:          <input type="text" name="name" required=""><br><br>
Email:          <input type="email" name="email" required=""><br><br>
Password:    <input type="password" name="password" required=""><br><br>
Number        <input type="number" name="phone number" required=""> <br><br>
Male:  <input type="radio" name="gender"required>   
Female: <input type="radio" name="gender">
Submit:<input type="submit" name="submit">
<input type="reset" value="reset"></div></div></form>
</body>
</html>
output:
please share and comment :(
- Get link
- X
- Other Apps
Comments