html基础

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
    <meta charset="UTF-8">
    <title>刘大大</title>
</head>
<body>
<input type="text"></input>

喜欢的动漫:
<input type="checkbox"> 海贼王
<input type="checkbox"> 火影忍者
<input type="checkbox"> 魔道祖师
<input type="checkbox"> 清秦时明月
<input type="checkbox"> 死神
</input>
<br>

复选框 性别:
<input type="radio" name="sex">男
<input type="radio" name="sex">女
<input type="radio" name="sex">未知
<input type="radio" name="sex">人妖
</input>

上传文件:
<input type="file">
<br>
按钮
<input type="button" value="hello html" disabled>
<button>点我点我点我呀,有惊喜哦</button>

<br>

图片
<!--链接-->
<img src="https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png" height="129" width="270" >
<br>
下拉框
年龄:<select>
    <option> 20岁以下 </option>
    <option> 20-25岁 </option>
    <option> 25-30岁 </option>
    <option> 30岁以上 </option>
    </select>
<br>
表单行
<form>
    <input type="text">
    <table border="4">
        <tr>
            <td> 11 </td>
            <td> 22 </td>
            <td> 33 </td>
        </tr>
         <tr>
            <td> 11 </td>
            <td> 22 </td>
            <td> 33 </td>
        </tr>
         <tr>
            <td> 11 </td>
            <td> 22 </td>
            <td> 33 </td>
        </tr>
    </table>
</form>
</br>

内联框架,里面放的是另一个页面
<iframe src="http://www.baidu.com">
</iframe>
</br>

多文本域
<textarea>
</textarea>
</br>

标题
<h1 id="title">大家好,我是刘大大!!!</h1>
<h2>大家好,我是刘大大</h2>
<h3>大家好,我是刘大大</h3>
<h4>大家好,我是刘大大</h4>
<h5>大家好,我是刘大大</h5>
<h6>大家好,我是刘大大</h6>


alert()函数,弹框并带有ok键
function 定义函数关键字,相当于python的def

window.onload 加载


onmouseover 颜色变化
onmouseout
<script>
    //function aaa() {
    //  var a = [1,2,3,4,5555];
    //  alert(a[-1])
    //  }
    //  aaa()

    //window.οnlοad=function(){
    //    alert("everything is ready!!")
    //}

    a = document.getElementById("title");
    a.onmouseover = function(){
        a.style.color = "green";
    };
    a.onmouseout = function(){
        a.style.color = "red";
    };

</script>

</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值