最新公告
  • 欢迎您光临码农资源网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!加入我们
  • 日间网站

    日间网站

    经过 5 天的渐进式 html 学习,我很高兴我们处于这一切的最后阶段,即本课程基于项目的部分,我只是构建网站并挑战自己……

    简单的用户登录和注册页面

    链接到项目用户页面

    注册页面 html-

    
      
        <meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="x-ua-compatible" content="ie=edge"><title>signup page</title><link rel="stylesheet" href="styles.css"><header><h2>user login page</h2>
        </header><section><main style="text-align: center;"><br><br><b> <h3> enter login details </h3> <br></b></main><article class="container"><br><form>
          <b> <label for="email"> email </label> <b> <br><input type="email" id="email" name="email"><br><br><b> <label for="password"> password </label> </b> <br><input type="password" id="password" name="password"><br><br><button>submit</button> <br></b></b>
    </form> 
          <br><p>
          don't have an account? <a href="signup.html">sign up</a>
          </p>
          </article></section><section></section>

    注册页面 html-

    
      
        <meta charset="utf-8"><meta name="viewport" content="width=device-width, initial-scale=1.0"><meta http-equiv="x-ua-compatible" content="ie=edge"><title>signup page</title><link rel="stylesheet" href="styles.css"><header><h2>user signup page</h2>
        </header><section><main style="text-align: center;"><br><br><b> <h3> enter signup details </h3> <br></b></main><article class="container"><br><form>
          <b> <label for="fname"> first name </label><br><input type="text" id="fname" name="fname"><br><br><b> <label for="lname"> last name </label> <br><input type="text" id="lname" name="lname"><br><br><b> <label for="email"> email </label> <b> <br><input type="email" id="email" name="email"><br><br><b> <label for="password"> password </label> </b> <br><input type="password" id="password" name="password"><br><br><button>submit</button> <br></b></b></b></b>
    </form> 
          <br><p>
          already have an account? <a href="index.html">sign in</a>
          </p>
          </article></section><section></section>

    css 样式-

    /* Basic reset */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html,
    body {
      height: 100%;
    }
    
    /* Body styles */
    body {
      background-color: antiquewhite;
      display: flex;
      justify-content: center; /* Center horizontally */
      align-items: center; /* Center vertically */
      flex-direction: column;
    }
    
    /* Header styles */
    header {
      text-align: center;
      margin-bottom: 20px; /* Add some space between the header and the content */
    }
    
    /* Article styles */
    article {
      border: 1px solid black;
      padding: 20px; /* Add some padding inside the border */
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      font-family: Tahoma, sans-serif;
      background-color: antiquewhite; /* Add background color for better visibility */
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Optional: Add some shadow for better look */
    }
    
    /* h3 styles */
    h3 {
      font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
        "Lucida Sans", Arial, sans-serif;
    }
    
    button {
      display: inline-block;
      padding: 10px 20px;
      font-size: 16px;
      color: black;
      border: none;
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      background-color: #ccc;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    button:hover {
      background-color: black;
      transform: translateY(-2px);
      color: white;
    }
    
    

    简单的交互式用户登录和注册网站…

    想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
    本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
    如有侵权请发送邮件至1943759704@qq.com删除

    码农资源网 » 日间网站
    • 7会员总数(位)
    • 25846资源总数(个)
    • 0本周发布(个)
    • 0 今日发布(个)
    • 294稳定运行(天)

    提供最优质的资源集合

    立即查看 了解详情