html例子

html的例子


<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Titletitle>
head>
<body>

<ul type="square">
    <li>helloli>
    <li>worldli>
    <li>nihaoli>
ul>

<ol type="I">
    <li>helloli>
    <li>worldli>
    <li>nihaoli>
ol>

<dl>
    <dt>自定义1dt>
        <dd>aadd>
        <dd>bbdd>
        <dd>ccdd>
    <dt>自定义2dt>
    <dt>自定义3dt>
dl>


<table border="10">
    <thead>
        <tr>
            <td>抬头1td>
            <td>抬头2td>
            <td>抬头3td>z
        tr>

    thead>
    <tr>
        <td>1,1td>
        <td>1,2td>
        <td colspan="2">1,3td>

    tr>
    <tr>
        <td>2,1td>
        <td rowspan="2"> 2,2td>
        <td>2,3td>
        <td>2,4td>
    tr>
    <tr>
        <td>3,1td>
        
        <td>3,3td>
        <td>3,4td>
    tr>
table>



<table border="1">
<thead>
<tr>
<th>IPth>
<th>DNS BOOLth>
tr>
thead>
<tbody>
<tr>
<td>1.1.1.1td>
<td>Truetd>
tr>
<tr>
<td>2.2.2.2td>
<td>Falsetd>
tr>
tbody>
table>

body>
html>




<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Titletitle>
head>
<body>
    <form style="margin: 30px" method="post" action="/login">
        <select disabled>
            <option>1option>
            <option>2option>
            <option>3option>
            <option>4option>
        select><br /><br />
        username:<input id="username" type="text" name="username" value="" placeholder="手机/邮箱/用户名"><br /><br />
        password:<input class="man" type="password" placeholder="密码"><br />
        <label>
            <input type = "radio" name = "sex" value = "男" />label>
        <label>
            <input type = "radio" name = "sex" vulue = "女" />label>
        <br />

        <input type="checkbox" name="Interest" value="1">篮球
        <input type="checkbox" name="Interest" value="2">游泳
        <input type="checkbox" name="Interest" value="3">骑车
        <input type="checkbox" name="Interest" value="4">跑步
        <input type="checkbox" name="Interest" value="5">唱歌

        
        <br />
        <br />
                                <button>提交button><input type="reset" />
    form>
body>
html>

你可能感兴趣的:(python)