700字范文,内容丰富有趣,生活中的好帮手!
700字范文 > php获取网页标题和内容函数(不包含html标签)

php获取网页标题和内容函数(不包含html标签)

时间:2020-07-04 21:14:21

相关推荐

php获取网页标题和内容函数(不包含html标签)

php教程|php手册

获取,标题,内容

php教程-php手册

昵图网源码php,vscode 修改侧边栏,ubuntu会卡吗,tomcat详解视频,sqlite3的db文件,两年时间能学会爬虫吗,php 获取时间戳毫秒,邢台一天seo,商业开源jsp网站,视频类网页模板下载lzw

有时候我们需要获取网页的标题与内容,就是个采集函数,这里简单分享下,方便需要的朋友

任务网源码,ubuntu下交叉编译,爬虫项目论文,评论 php,seo优质策略lzw

asp 产品 管理 源码,Ubuntu键盘未捕获,tomcat9项目启动顺序,爬虫在家怎么赚钱,php400页面编写代码,江西企业seolzw

复制代码 代码如下:

function getPageContent($url) {

//$url=’;

$pageinfo = array();

$pageinfo[content_type] = ”;

$pageinfo[charset] = ”;

$pageinfo[title] = ”;

$pageinfo[description] = ”;

$pageinfo[keywords] = ”;

$pageinfo[body] = ”;

$pageinfo[‘httpcode’] = 200;

$pageinfo[‘all’] = ”;

$ch = curl_init();

curl_setopt($ch, CURLOPT_USERAGENT, “Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)”);

curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);

curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);

curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0);

curl_setopt($ch, CURLOPT_TIMEOUT, 8);

curl_setopt($ch, CURLOPT_FILETIME, 1);

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

//curl_setopt($ch, CURLOPT_HEADER, 1);

curl_setopt($ch, CURLOPT_URL,$url);

$curl_start = microtime(true);

$store = curl_exec ($ch);

$curl_time = microtime(true) – $curl_start;

if( curl_error($ch) ) {

$pageinfo[‘httpcode’] = 505; //gate way error

echo ‘Curl error: ‘ . curl_error($ch) .”/n”;

return $pageinfo;

}

//print_r(curl_getinfo($ch));

$pageinfo[‘httpcode’] = curl_getinfo($ch,CURLINFO_HTTP_CODE);

//echo curl_getinfo($ch,CURLINFO_CONTENT_TYPE).”/n”;

$pageinfo[content_type] = curl_getinfo($ch,CURLINFO_CONTENT_TYPE);

if(intval($pageinfo[‘httpcode’]) 200 or !preg_match(‘@text/html@’,curl_getinfo($ch,CURLINFO_CONTENT_TYPE) ) ) {

//print_r(curl_getinfo($ch) );

//exit;

return $pageinfo;

}

preg_match(‘/charset=([^/s/n/r]+)/i’,curl_getinfo($ch,CURLINFO_CONTENT_TYPE),$matches); //从header 里取charset

if( trim($matches[1]) ) {

$pageinfo[charset] = trim($matches[1]);

}

//echo $pageinfo[charset];

//exit;

curl_close ($ch);

//echo $store;

//remove javascript

$store = preg_replace(“/<!–

(.*)/smUi”,”,$store);

//remove link

$store = preg_replace(“/]+>/smUi”,”,$store);

//remove

$store = preg_replace(“//smUi”,”,$store);

//remove

<style </ $store = preg_replace(“/(.*)/smUi”,”,$store);

//remove 中文空格

$store = preg_replace(“//”,”,$store);

//remove 标点符号

//$store = preg_replace(“/[/~`!@#$%^&*()_/-+={}|/[/]//;’:”//?/,/.//]/”,”,$store);

//preg_match(“/(.*)/smUi”,$store, $matches);

//$head = $matches[1];

//echo $head. “/n”;

//charset

if($pageinfo[charset] == ” ) {

preg_match(‘@]*>@i’,$store,$matches);

$pageinfo[charset] = trim($matches[1]);

}

//desctiption

preg_match(‘@]+)/*>@i’,$store,$matches);

//print_r($matches);

$desc = trim($matches[1]);

$pageinfo[description] = str_replace(“/””, ”,$desc);

preg_match(‘@]+)/*>@i’,$store,$matches);

//print_r($matches);

$keywords = trim($matches[1]);

$pageinfo[keywords] = str_replace(“/””, ”,$keywords);

preg_match(“/

(.*)/smUi”,$store, $matches);<p>$pageinfo[title] = trim($matches[1]);<p>preg_match(“/(.*)/smUi”,$store, $matches);<p>$pageinfo[body] = addslashes( replaceHtmlAndJs($matches[1]) ) ;<p>$pageinfo[‘all’] = addslashes( replaceHtmlAndJs($store) ) ;</p><p>//echo “charset = ” . $pageinfo[charset] . “/n”;</p><p>//print_r($pageinfo);<p>//exit;</p><p>return $pageinfo;</p><p>}</p><p>/**<p>* 去掉所有的HTML标记和JavaScript标记<p>*/<p>function replaceHtmlAndJs($document)<p>{<p>$document = trim($document);<p>if (strlen($document) <= 0)<p>{<p>return $document;<p>}<p>$search = array (<p>“‘]*?>.*?<p>// –>’si”, // 去掉 javascript<p>“‘<[///!]*?[^]*?>’si”,// 去掉 HTML 标记<p>“‘[/r/n/s+]”,// 去掉空白字符<p>“‘&(/w+);’i” // 替换 HTML 实体<p>); // 作为 PHP 代码运行</p><p>$replace = array ( “”, “”, “”, “” );</p><p>return @preg_replace ($search, $replace, $document);</p><p>}</p><p>使用例子</p><p>复制代码 代码如下:</p><p>$a = getPageContent();<p>print_r($a);</p><p>,</p><p></p></p> </div> <div class="keywords"> </div> <div class="tips">本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。</div> </div> <script>news_one();</script> <dl class="plbox" id="comments"> <dt>网友评论</dt> <dd> <textarea class="plcc">文明上网理性发言</textarea> <button class="sendpl">发表评论</button> <div class="pl_tips">网友评论仅供其表达个人看法,并不表明网站立场。</div> <div class="b10"></div> <ol class="pllist"> </ol> </dd> </dl> <script> $(".plcc").focus(function(){ if($('.plcc').val()=='文明上网理性发言') $('.plcc').val(''); }); $(".sendpl").click(function(){ var plcc=$('.plcc').val(),plcs=$('<p>'+plcc+'</p>').text(); if(plcs!='' && plcs!='文明上网理性发言'){ $('.pllist').prepend('<li><img src="https://700zi.400zi.cn/statics/images/member/avatar.jpg" /><span class="adtime">2024-09-24 12:29</span><span class="plname">匿名1700497024</span><span class="ipadd">[网友]<i>0.0.0.0</i></span><div class="pldata">'+plcs+' <font color="gray">(审核中)</font></div><div class="support"><span class="s1">顶0</span><span class="s2">踩0</span></div><div class="clear"></div></li>'); $.post("https://700zi.400zi.cn/comment.php",{"commentid":"content_1-67828129-1","title":"php%E8%8E%B7%E5%8F%96%E7%BD%91%E9%A1%B5%E6%A0%87%E9%A2%98%E5%92%8C%E5%86%85%E5%AE%B9%E5%87%BD%E6%95%B0%28%E4%B8%8D%E5%8C%85%E5%90%ABhtml%E6%A0%87%E7%AD%BE%29","content":plcs,"token":"2e12a9f54cdf7c935a29ea9cb7d95e7e"}); } }); </script> <script>show(3);</script> <div class="list mt20"> <div class="listTit"><span></span>相关阅读</div> <dl> <dt><a href="https://700zi.400zi.cn/dd/14/874/V5jnjAnk59.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/14/874/5fafe7a3e62676033bdcc1351199188d.jpg" alt="php正则获取标签 PHP通过正则匹配中文字符 过滤html标签 获取文本内容" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/dd/14/874/V5jnjAnk59.html" target="_blank">php正则获取标签 PHP通过正则匹配中文字符 过滤html标签 获取文本内容</a></p> <p class="des"></p> <p class="key"> <span>2023-07-02</span> <span></span> </p> </dd> </dl> <dl> <dt><a href="https://700zi.400zi.cn/dd/14/719/gr7K6KWbrp.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/14/719/75ee289b8beda9da58ecca6f3f533f19.jpg" alt="JS中编写函数去除HTML标签 js函数获取html中className所在的内容并去除标签" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/dd/14/719/gr7K6KWbrp.html" target="_blank">JS中编写函数去除HTML标签 js函数获取html中className所在的内容并去除标签</a></p> <p class="des"></p> <p class="key"> <span>2021-08-10</span> <span></span> </p> </dd> </dl> <dl> <dt><a href="https://700zi.400zi.cn/dd/14/624/45GjB06qRG.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/14/624/b9a4a1f2d98f2c0e2f52eb16dfd81a06.jpg" alt="html中的标签列表 php如何获取html页面title标签里面的内容 – html – 前端 ph" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/dd/14/624/45GjB06qRG.html" target="_blank">html中的标签列表 php如何获取html页面title标签里面的内容 – html – 前端 ph</a></p> <p class="des"></p> <p class="key"> <span>2021-03-27</span> <span></span> </p> </dd> </dl> <dl> <dt><a href="https://700zi.400zi.cn/dd/14/580/gr7KvYlbrp.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/14/580/41339db06d60bbe05bb2dd4141c465c1.jpg" alt="php怎么通过地址去获取一个网页的标题title里面的内容" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/dd/14/580/gr7KvYlbrp.html" target="_blank">php怎么通过地址去获取一个网页的标题title里面的内容</a></p> <p class="des"></p> <p class="key"> <span>2019-05-24</span> <span></span> </p> </dd> </dl> </div> </div> <div class="sideRight"> <script>news_two();</script> <div class="rightNews mt20"> <div class="rightTit"><span></span>扩展阅读</div> <div class="rightNewsList"> <dl> <dt><a href="https://www.qwen.cn/html/201801/25/1468941.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/pic/419.jpg" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://www.qwen.cn/html/201801/25/1468941.html" target="_blank">3分钟短文|<em>PHP</em><em>获取</em><em>函数</em>的代码片段 唯有反射最高效!</a></p> </dd> </dl> <dl> <dt><a href="https://www.qwen.cn/html/201911/28/1556334.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/pic/557.jpg" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://www.qwen.cn/html/201911/28/1556334.html" target="_blank">3分钟短文|<em>PHP</em><em>获取</em><em>函数</em>的代码片段 唯有反射最高效!</a></p> </dd> </dl> <dl> <dt><a href="https://www.qwen.cn/html/202011/22/1401006.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/pic/44.jpg" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://www.qwen.cn/html/202011/22/1401006.html" target="_blank">教你轻松学会<em>HTML</em>语言系列之二——<em>网页</em>背景 字体及<em>标题</em>的设置</a></p> </dd> </dl> <dl> <dt><a href="https://www.qwen.cn/html/201312/25/1534399.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/pic/493.jpg" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://www.qwen.cn/html/201312/25/1534399.html" target="_blank">如何用<em>PHP</em>读取excel文件<em>内容</em> <em>获取</em>单元格数据</a></p> </dd> </dl> <dl> <dt><a href="https://www.qwen.cn/html/201611/10/1557539.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/pic/234.jpg" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://www.qwen.cn/html/201611/10/1557539.html" target="_blank">如何用<em>PHP</em>读取excel文件<em>内容</em> <em>获取</em>单元格数据</a></p> </dd> </dl> <dl> <dt><a href="https://www.qwen.cn/html/202012/05/1573268.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/pic/589.jpg" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://www.qwen.cn/html/202012/05/1573268.html" target="_blank">「<em>HTML</em>+CSS」<em>html</em>修饰<em>标签</em>介绍 为页面元素添加独立效果</a></p> </dd> </dl> </div> </div> <div class="rightNews mt20"> <div class="rightTit"><span></span>最近发布</div> <div class="rightNewsList"> <dl> <dt><a href="https://700zi.400zi.cn/html/2024/0923/k3xg1oe2xo.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/2024/09/23/c6194ad28ed5fafe933d2ce88621ab00.jpg" alt="探讨善良的魅力:一篇700字论文" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/html/2024/0923/k3xg1oe2xo.html" target="_blank">探讨善良的魅力:一篇700字论文</a></p> <p class="key"> <span>2024-09-23</span> <span></span> </p> </dd> </dl> <dl> <dt><a href="https://700zi.400zi.cn/html/2024/0923/0e51b9yrxQ.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/2024/09/23/2c82066ade2cacbfac56446b39a73d8b.jpg" alt="幸福的守候作文700字" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/html/2024/0923/0e51b9yrxQ.html" target="_blank">幸福的守候作文700字</a></p> <p class="key"> <span>2024-09-23</span> <span></span> </p> </dd> </dl> <dl> <dt><a href="https://700zi.400zi.cn/html/2024/0923/YV5jEbyR9N.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/2024/09/23/a4100f9f2de30bf1ade4a3ee40bae481.jpg" alt="清华武亦姝700字军训感言:坚持不懈获得教育部表扬 坚忍时更学会享受" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/html/2024/0923/YV5jEbyR9N.html" target="_blank">清华武亦姝700字军训感言:坚持不懈获得教育部表扬 坚忍时更学会享受</a></p> <p class="key"> <span>2024-09-23</span> <span></span> </p> </dd> </dl> <dl> <dt><a href="https://700zi.400zi.cn/html/2024/0923/6N5oAxBOdw.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/2024/09/23/d49a28af7da37d27d4c674e09cefb813.jpg" alt="政治检讨700字反思" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/html/2024/0923/6N5oAxBOdw.html" target="_blank">政治检讨700字反思</a></p> <p class="key"> <span>2024-09-23</span> <span></span> </p> </dd> </dl> <dl> <dt><a href="https://700zi.400zi.cn/html/2024/0922/n9OVWo7RNw.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/2024/09/22/76b1581e973ce5686705b2b1abb1a22a.jpg" alt="我身边的环保:高一话题作文700字" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/html/2024/0922/n9OVWo7RNw.html" target="_blank">我身边的环保:高一话题作文700字</a></p> <p class="key"> <span>2024-09-22</span> <span></span> </p> </dd> </dl> <dl> <dt><a href="https://700zi.400zi.cn/html/2024/0922/wpOgW8GOXz.html" target="_blank"><img src="https://700zi.400zi.cn/uploadfile/img/2024/09/22/f84517ea31771e6d6a08b3b8f3241813.jpg" alt="发现你的美作文700字" width="230" height="150" /></a></dt> <dd> <p class="tit"><a href="https://700zi.400zi.cn/html/2024/0922/wpOgW8GOXz.html" target="_blank">发现你的美作文700字</a></p> <p class="key"> <span>2024-09-22</span> <span></span> </p> </dd> </dl> </div> </div> <div class="rightClass mt20"> <div class="rightTit"><span></span>推荐专题</div> <div class="txt"> <a href="https://700zi.400zi.cn/vv/1/0/zjsazw700z.html" title="这就是爱作文700字">这就是爱作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/lsesszw700z.html" title="老师二三事作文700字">老师二三事作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/gdzw700z.html" title="感动作文700字">感动作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/gkmfzw700z.html" title="高考满分作文700字">高考满分作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/tndhg700z.html" title="童年读后感700字">童年读后感700字</a> <a href="https://700zi.400zi.cn/vv/1/1/xrdzw700zce.html" title="写人的作文700字初二">写人的作文700字初二</a> <a href="https://700zi.400zi.cn/vv/1/0/700zjt.html" title="700字检讨">700字检讨</a> <a href="https://700zi.400zi.cn/vv/1/0/zwtnqs700z.html" title="作文童年趣事700字">作文童年趣事700字</a> <a href="https://700zi.400zi.cn/vv/1/0/sjsh700z.html" title="暑假生活700字">暑假生活700字</a> <a href="https://700zi.400zi.cn/vv/1/0/nqdjzzw700z.html" title="年轻的价值作文700字">年轻的价值作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/cdaxzw700z.html" title="传递爱心作文700字">传递爱心作文700字</a> <a href="https://700zi.400zi.cn/vv/1/1/700z1000005zkj.html" title="700字1000005Z空间">700字1000005Z空间</a> <a href="https://700zi.400zi.cn/vv/1/0/wdjqshzw700z.html" title="我的假期生活作文700字">我的假期生活作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/wdjx700zzw.html" title="我的家乡700字作文">我的家乡700字作文</a> <a href="https://700zi.400zi.cn/vv/1/0/jlzw700z.html" title="经历作文700字">经历作文700字</a> </div> </div> </div> </div> <script>show(4);</script> <div class="footer"> <div class="footLinks"> <div class="footLink"> <div class="tit">猜你喜欢:</div> <div class="txt txtTwo"> <a href="https://700zi.400zi.cn/vv/1/0/zjswzw700z.html" title="这就是我作文700字">这就是我作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/qcdwdzw700z.html" title="青春的味道作文700字">青春的味道作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/zmdsyzw700z.html" title="最美的声音作文700字">最美的声音作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/kfkndzw700z.html" title="克服困难的作文700字">克服困难的作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/dsbj700z.html" title="读书笔记700字">读书笔记700字</a> <a href="https://700zi.400zi.cn/vv/1/0/tnqszw700z.html" title="童年趣事作文700字">童年趣事作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/fjzls700zzw.html" title="风景在路上700字作文">风景在路上700字作文</a> <a href="https://700zi.400zi.cn/vv/1/0/700zylw.html" title="700字议论文">700字议论文</a> <a href="https://700zi.400zi.cn/vv/1/0/qc700zzw.html" title="青春700字作文">青春700字作文</a> <a href="https://700zi.400zi.cn/vv/1/0/cxdzw700z.html" title="诚信的作文700字">诚信的作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/xs700z.html" title="小说700字">小说700字</a> <a href="https://700zi.400zi.cn/vv/1/0/gyzxdzw700z.html" title="关于自信的作文700字">关于自信的作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/mmwxdns700z.html" title="妈妈我想对你说700字">妈妈我想对你说700字</a> <a href="https://700zi.400zi.cn/vv/1/1/xgbbdyfx700z.html" title="写给爸爸的一封信700字">写给爸爸的一封信700字</a> <a href="https://700zi.400zi.cn/vv/1/0/jxdnykzw700z.html" title="惊喜的那一刻作文700字">惊喜的那一刻作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/qcwhzw700z.html" title="青春无悔作文700字">青春无悔作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/wdzhx700z.html" title="我的自画像700字">我的自画像700字</a> <a href="https://700zi.400zi.cn/vv/1/0/ctzw700z.html" title="春天作文700字">春天作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/qqzw700zjxw.html" title="亲情作文700字记叙文">亲情作文700字记叙文</a> <a href="https://700zi.400zi.cn/vv/1/0/xfdwd700zzw.html" title="幸福的味道700字作文">幸福的味道700字作文</a> <a href="https://700zi.400zi.cn/vv/1/0/gycydzw700z.html" title="关于春游的作文700字">关于春游的作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/gyzqjdzw700z.html" title="关于中秋节的作文700字">关于中秋节的作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/qc700z.html" title="青春700字">青春700字</a> <a href="https://700zi.400zi.cn/vv/1/0/cjwmcszw700z.html" title="创建文明城市作文700字">创建文明城市作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/yj700zzw704.html" title="遇见700字作文">遇见700字作文</a> <a href="https://700zi.400zi.cn/vv/1/0/wdhpyzw700z.html" title="我的好朋友作文700字">我的好朋友作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/zkzw700z.html" title="中考作文700字">中考作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/wdxxzw700z.html" title="我的学校作文700字">我的学校作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/kllyzw700z.html" title="快乐六一作文700字">快乐六一作文700字</a> <a href="https://700zi.400zi.cn/vv/1/0/xrdzw700zcy.html" title="写人的作文700字初一">写人的作文700字初一</a> </div> <div class="more">展开</div> </div> </div> <div class="copyRight pc"> <p class="left">700字范文 免责声明<span></span>© 2024 All Rights Reserved.</p> <p class="right"><a href="http://beian.miit.gov.cn/" target="_blank" rel="external nofollow">湘ICP备2024057051号</a><span></span><a href="/sitemap.html" target="_blank">网站地图</a><span></span><a href="/sitemap.xml" target="_blank">XML</a><span></span></p> </div> <div class="copyRight mobile"> <p>© 2024 All Rights Reserved.</p> <p><a href="/">700字范文</a> 免责声明<span></span></p> </div> </div> <div id="backTop" class="none"></div> <script type="text/javascript">op('content',67828129,1);</script> </body> </html>