HTML 字体列表下拉列表

发布于 2024-12-09 06:25:16 字数 234 浏览 0 评论 0原文

是否有我可以调用的脚本或函数来创建字体下拉菜单?有很多字体吗?那么一旦选择它就可以在从数据库到网站的过程中使用吗? (又名让用户选择他们的字体类型):

更具体地说,是五种左右的标准“网络安全”字体。

或者有人可以列出这 5 种字体,以便在 html 中使用它们。

前任:

<font face="????">Text</font>

Is there a script or function I can call to create a font dropdown menu? Of a lot of fonts? so once selected it can be used in an from the database on to the website? (aka let the user select their font type):

More specifically the five or so standard "Web safe" fonts.

Or can someone just list those 5 fonts for when using them in html.

Ex:

<font face="????">Text</font>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

霞映澄塘 2024-12-16 06:25:16

如果您愿意,您可以完全在 css 中完成此操作:

<select>
    <option class="font1"></option>
    <option class="font2"></option>
    <option class="font3"></option>
    <option class="font4"></option>
    <option class="font5"></option>
</select>

<style>
    .font1 {font-family:arial}
    .font2 {font-family:monospace}
    ... etc
</style>

另外,我会避免使用 font 标签,我相信它从 HTML4 开始已被弃用。
如果您有大量的字体,我会使用 PHP 或您选择的其他 HTML 语言自动生成标记。如果您需要有关如何执行此操作的具体信息,请告诉我。

You could do this entirely in css if you wish:

<select>
    <option class="font1"></option>
    <option class="font2"></option>
    <option class="font3"></option>
    <option class="font4"></option>
    <option class="font5"></option>
</select>

<style>
    .font1 {font-family:arial}
    .font2 {font-family:monospace}
    ... etc
</style>

Also I would avoid using the font tag, it's deprecated as of HTML4 I believe.
If you have a ridiculous amount of fonts I would automate the markup generation with PHP or another HTML geared language of your choice. If you need specifics on how to do this just let me know.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文