写html源代码

写html源代码,第1张

body>

<p style="font-size: 40pt; text-align: center;">个人情况调查</p>

<p> </p>

<form id="form1" name="form1" method="post" action="" style="text-align: center;">

<p>姓名:

<label for="username"></label>

<input type="text" name="username" id="username" />

</p>

<p>密码:

<label for="password"></label>

<input type="password" name="password" id="password" />

</p>

<p>工作状况:

<label for="works"></label>

<select name="works" id="works">

<option>工作</option>

<option>学习</option>

</select>

</p>

<p>个人简历:

<label for="jianli"></label>

<textarea name="jianli" id="jianli" cols="16" rows="5"></textarea>

</p>

<p>

<input type="submit" name="tijiao" id="tijiao" value="发送表单" />

<input type="reset" name="chongxie" id="chongxie" value="重新填写" />

</p>

</form>

</body>

第一,html网页标签是放入以“<”开始,“>”结束尖括号有意义单词(系统、程序、浏览器默认单词),如<div>这就是div标签。

第二,网页标签不是随便自己命名,如<p>、<br>、<div>等都是有意义而且是浏览器支持的标签,不能自己想当然的自己将一个单词字母放如尖括号里就作为标签,即使将自己命名标签作为标签使用浏览器都不会解释网页也不会显示。

<style type="text/css">

#demo{height:120px;overflow:hidden;}

#demo1{float:left;}#demo2{float:left;}

#indemo{float:left; width:1000%}

</style>

<div id="demo">

<div id="indemo">

<div id="demo1">这里放你要循环的</div>

<div id="demo2"></div>

</div>

</div>

<script>

<!--

var speed=20; //数字越大速度越慢

var tab=documentgetElementById("demo");

var tab1=documentgetElementById("demo1");

var tab2=documentgetElementById("demo2");

tab2innerHTML=tab1innerHTML;

function Marquee(){

if(tabscrollLeft<=0)

tabscrollLeft+=tab2offsetWidth

else{

tabscrollLeft--;

}

}

var MyMar=setInterval(Marquee,speed);

tabonmouseover=function() {clearInterval(MyMar)};

tabonmouseout=function() {MyMar=setInterval(Marquee,speed)};

-->

</script>

可以的啊,把上面代码复制到一个新建的html中,把<img src="你的" />放到代码中就行了啊

以上就是关于写html源代码全部的内容,包括:写html源代码、查看html源代码里面有很多尖括号这就是html的什么、HTML源代码等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/10214212.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-06
下一篇 2023-05-06

发表评论

登录后才能评论

评论列表(0条)

保存