• HomeWeb Front-endHTML TutorialThree practical codes to let visitors remember the website_HTML/Xhtml_Webpage Production


    Three practical codes for visitors to remember your website. Prompt to add to favorites
    Favorites is the browser’s most basic tool for recording URLs. Although the browser has convenient favorites management functions, if you put the add to favorites button on the web page , will greatly increase the collection rate. The following three web design methods can be used:
    Prompt the user to press ctrl+d. When you use IE browser to browse a web page, pressing ctrl+d will add the current page to your favorites. You can use text on the web page to prompt the user to press this key combination.
    Use text links. Put the following code on the homepage, click the corresponding text link to pop up the favorites management window, press the OK key to bookmark the current page:
    〈p align=″right″〉
    〈a href= ″http://www.jb51.net/″ target=″_top″onclick=″window.external.addfavorite(′http://www.jb51.net/′,′Script Home′)″title=″Script Home″〉IE users click here to bookmark this site〈/a〉〈/p〉
    using button method. It will be more obvious if the add favorites function is implemented on a button. The specific code is as follows: 〈form〉
    〈p〉〈input type=″button″value=″Bookmark this site″onclick=″window .external.addfavorite(′http://www.jb51.net/′,′Script Home′)″〉〈/p〉
    〈/form〉
    Set as the browser’s homepage
    If you add a convenient way to set the homepage on your homepage, maybe some people will actually set your website as the homepage. Modifying the browser's homepage requires modifying the Windows registry. All you have to do is make a registry modification file and download it to the user's hard drive to help the viewer complete the automatic modification of the registry. For example, the file name is lspace.reg, which can be opened with Notepad or other text editors. The specific content is as follows:
    regedit4
    [hkey—current—usersoftwaremicrosoftinternet explorermain]
    ″start page″ = ″http: //www.jb51.net/″
    [hkey—current—usersoftwarenetscapenetscape navigatormain]
    ″home page″ = ″http://www.jb51.net/″
    The first item is to set the star of IE page; The second item sets the home page of nc!
    Modify it to the corresponding URL, upload it to the Internet, and provide a download link on the homepage. After downloading, the viewer can double-click to complete the registry modification work.
    Production Channel
    IE channel file is actually a plain text file, with a syntax format similar to html, with cdf as the extension. Therefore, you do not need any special editing tools to create channel files. Notepad under Windows 98 is enough. The following is an example of a complete channel file:
    〈channel href=″index.htm″ self=″jb51.cdf″ base=″http://www.jb51.net/″〉
    script Home〈/title〉<br>〈logo href=″/images/logo.gif″ style=″image″ /〉<br>〈logo href=″/images/120*90.gif″ style=”icon″ / 〉<br>〈abstract〉Script House——jb51.net〈/abstract〉<br>〈item href=″ad.htm″ precache=″yes″〉<br><title>Script House Advertising Service title〉<br>〈abstract〉Script Home〈/abstract〉<br>〈logo href=″/images/logo.gif″ style=″icon″ /〉<br>〈/item〉<br>〈item href =″/sucai/index.htm″ precache=″yes″〉<br>〈title〉High-quality material〈/title〉<br>〈abstract>High-quality material〈/abstract〉<br>〈logo href=″/images/ logo.gif″ style=″icon″ /〉<br>〈/item〉<br>〈/channel〉<br>Note: <br>The text of channel files all starts with 〈channel...〉 and ends with Ending with 〈/channel〉. <br>In the first line 〈channel...〉: <br>href="..." indicates the main web page file name pointed to by this channel; <br>self="..." is the channel file itself The file name; <br>base="..." The default base path (url) of the channel file. If all "hrefs" in the channel file use absolute paths, this can be omitted. <br>The second line 〈title〉...〈/title〉, fill in the title of the channel. <br>In the third and fourth lines 〈logo...〉: fill in the file name of the pattern at <br>href="..."; fill in the description of the pattern at <br>style="..." ;<br>image represents the icon located in the channel bar (size is 80×32 pixels); <br>icon represents the icon of the channel file (size is 32×32 pixels). <br>Note: Don’t miss the “/” at the end. <br>The fifth line 〈abstract〉...〈/abstract〉, fill in the description of the channel content. <br>The sixth line 〈item...〉 defines the sub-channel. Sub-channels can be links to some main columns under the main page. Where href="..." is filled in with the web page file name pointed to by the sub-channel; precache="..." is used to determine whether to cache the sub-channel, and the answer is only "yes" or "no". <br>The seventh line, 〈title〉...〈/title〉, fill in the title of the sub-channel. <br>The tenth line sub-channel ends. <br>The eleventh line begins to define the second sub-channel. <br>Finally ends with 〈/channel〉 and saves it with cdf extension. <br>Upload this file to the web server. When it needs to be called on the web page, let visitors add it to their channel bar. The specific tag syntax is as follows: <br>〈a href="http://www.jb51 .net/jb51.cdf″〉 Add Script House to your channel〈/a〉
    Statement
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    全角英文字母转换为半角形式的实用技巧全角英文字母转换为半角形式的实用技巧Mar 26, 2024 am 09:54 AM

    全角英文字母转换为半角形式的实用技巧在现代生活中,我们经常会接触到英文字母,在使用电脑、手机等设备时也经常需要输入英文字母。然而,有时候我们会遇到全角英文字母的情况,而我们需要使用的是半角形式。那么,如何将全角英文字母转换为半角形式呢?下面就为大家介绍一些实用的技巧。首先,全角英文字母和数字是指在输入法中占据一个全角位置的字符,而半角英文字母和数字则是占据一

    PyCharm新手指南:学会在PyCharm中删除项目PyCharm新手指南:学会在PyCharm中删除项目Feb 23, 2024 pm 09:39 PM

    PyCharm新手指南:删除项目的实用技巧PyCharm是一款功能强大的Python集成开发环境(IDE),在进行项目开发时,有时候需要删除项目或项目中的文件。本文将介绍在PyCharm中删除项目的实用技巧,并提供具体的代码示例帮助新手更好地理解和应用。1.删除项目删除项目意味着删除整个项目文件夹,这在我们需要清理或重建项目时非常有用。在PyCharm中删

    五个方便好用的Python自动化脚本五个方便好用的Python自动化脚本Apr 11, 2023 pm 07:31 PM

    相比大家都听过自动化生产线、自动化办公等词汇,在没有人工干预的情况下,机器可以自己完成各项任务,这大大提升了工作效率。编程世界里有各种各样的自动化脚本,来完成不同的任务。尤其Python非常适合编写自动化脚本,因为它语法简洁易懂,而且有丰富的第三方工具库。这次我们使用Python来实现几个自动化场景,或许可以用到你的工作中。1、自动化阅读网页新闻这个脚本能够实现从网页中抓取文本,然后自动化语音朗读,当你想听新闻的时候,这是个不错的选择。代码分为两大部分,第一通过爬虫抓取网页文本呢,第二通过阅读工

    用Python写了个小工具,再复杂的文件夹,分分钟帮你整理!用Python写了个小工具,再复杂的文件夹,分分钟帮你整理!Apr 11, 2023 pm 08:19 PM

    糟透了我承认我不是一个爱整理桌面的人,因为我觉得乱糟糟的桌面,反而容易找到文件。哈哈,可是最近桌面实在是太乱了,自己都看不下去了,几乎占满了整个屏幕。虽然一键整理桌面的软件很多,但是对于其他路径下的文件,我同样需要整理,于是我想到使用Python,完成这个需求。效果展示我一共为将文件分为9个大类,分别是图片、视频、音频、文档、压缩文件、常用格式、程序脚本、可执行程序和字体文件。# 不同文件组成的嵌套字典 file_dict = { '图片': ['jpg','png','gif','webp

    用 WebAssembly 在浏览器中运行 Python用 WebAssembly 在浏览器中运行 PythonApr 11, 2023 pm 09:43 PM

    长期以来,Python 社区一直在讨论如何使 Python 成为网页浏览器中流行的编程语言。然而网络浏览器实际上只支持一种编程语言:JavaScript。随着网络技术的发展,我们已经把越来越多的程序应用在网络上,如游戏、数据科学可视化以及音频和视频编辑软件。这意味着我们已经把繁重的计算带到了网络上——这并不是JavaScript的设计初衷。所有这些挑战提出了对新编程语言的需求,这种语言可以提供快速、可移植、紧凑和安全的代码执行。因此,主要的浏览器供应商致力于实现这个想法,并在2017年向世界推出

    一文读懂层次聚类(Python代码)一文读懂层次聚类(Python代码)Apr 11, 2023 pm 09:13 PM

    首先要说,聚类属于机器学习的无监督学习,而且也分很多种方法,比如大家熟知的有K-means。层次聚类也是聚类中的一种,也很常用。下面我先简单回顾一下K-means的基本原理,然后慢慢引出层次聚类的定义和分层步骤,这样更有助于大家理解。层次聚类和K-means有什么不同?K-means 工作原理可以简要概述为: 决定簇数(k) 从数据中随机选取 k 个点作为质心 将所有点分配到最近的聚类质心 计算新形成的簇的质心 重复步骤 3 和 4这是一个迭代过程,直到新形成的簇的质心不变,或者达到最大迭代次数

    从头开始构建,DeepMind新论文用伪代码详解Transformer从头开始构建,DeepMind新论文用伪代码详解TransformerApr 09, 2023 pm 08:31 PM

    2017 年 Transformer 横空出世,由谷歌在论文《Attention is all you need》中引入。这篇论文抛弃了以往深度学习任务里面使用到的 CNN 和 RNN。这一开创性的研究颠覆了以往序列建模和 RNN 划等号的思路,如今被广泛用于 NLP。大热的 GPT、BERT 等都是基于 Transformer 构建的。Transformer 自推出以来,研究者已经提出了许多变体。但大家对 Transformer 的描述似乎都是以口头形式、图形解释等方式介绍该架构。关于 Tra

    用 Python 实现导弹自动追踪,超燃!用 Python 实现导弹自动追踪,超燃!Apr 12, 2023 am 08:04 AM

    大家好,我是J哥。这个没有点数学基础是很难算出来的。但是我们有了计算机就不一样了,依靠计算机极快速的运算速度,我们利用微分的思想,加上一点简单的三角学知识,就可以实现它。好,话不多说,我们来看看它的算法原理,看图:由于待会要用pygame演示,它的坐标系是y轴向下,所以这里我们也用y向下的坐标系。算法总的思想就是根据上图,把时间t分割成足够小的片段(比如1/1000,这个时间片越小越精确),每一个片段分别构造如上三角形,计算出导弹下一个时间片走的方向(即∠a)和走的路程(即vt=|AC|),这时

    See all articles

    Hot AI Tools

    Undresser.AI Undress

    Undresser.AI Undress

    AI-powered app for creating realistic nude photos

    AI Clothes Remover

    AI Clothes Remover

    Online AI tool for removing clothes from photos.

    Undress AI Tool

    Undress AI Tool

    Undress images for free

    Clothoff.io

    Clothoff.io

    AI clothes remover

    AI Hentai Generator

    AI Hentai Generator

    Generate AI Hentai for free.

    Hot Article

    R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
    2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
    Repo: How To Revive Teammates
    1 months agoBy尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island Adventure: How To Get Giant Seeds
    4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

    Hot Tools

    Safe Exam Browser

    Safe Exam Browser

    Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

    SublimeText3 Linux new version

    SublimeText3 Linux new version

    SublimeText3 Linux latest version

    VSCode Windows 64-bit Download

    VSCode Windows 64-bit Download

    A free and powerful IDE editor launched by Microsoft

    Atom editor mac version download

    Atom editor mac version download

    The most popular open source editor

    SublimeText3 Mac version

    SublimeText3 Mac version

    God-level code editing software (SublimeText3)