一定有更好的方法来做到这一点

问题描述 投票:0回答:1

我需要一个网站

print("My name is Dr Email")
print("Welcome to my website")
print("Here is me")
print("Here is photographs")
print("Here is photographs of me")
image.load("dremail/Photos/Me/M14.png")

如何超级链接它们

我无法拍摄照片 请帮我打星

-博士电子邮件 俄罗斯文学博士

web-testing
1个回答
0
投票

你的问题很不清楚,但我会尽力的。

你想制作一个网站,你写的代码似乎是用Python写的,在控制台打印一些东西。

如果您想创建一个网站,您需要使用 HTML 或其他一些网络库,例如 Flask(以及某种 HTML 模板)。

我假设你的意思是超链接而不是超级链接,这可以使用锚点

<a href="{{link}}"></a>
标签来实现。

您可以使用

<img src="dremail/Photos/Me/M14.png" alt=""/>

加载图像

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <h1>My name is Dr Email</h1>
    <h2>Welcome to my website</h2>
    <br>
    <div>
        <h3>Here is me</h3>
        <img src="https://www.w3schools.com/w3images/avatar2.png" alt="Dr Email">
    </div>
    <div>
        <h3>Here is photographs</h3>
        <img src="https://www.w3schools.com/w3images/nature.jpg" alt="Nature">
    </div>
    <div>
        <h3>Here is photographs of me</h3>
        <img src="https://www.w3schools.com/w3images/avatar2.png" alt="Dr Email">
    </div>
</body>
</html>

这样的东西已经可以工作了,您只需链接您想要使用的图像并将它们放置在网站托管后可以访问的目录中。 (您需要替换图像标签中的 src= 属性)。

请注意,除了默认的 html 样式之外,没有其他样式

© www.soinside.com 2019 - 2024. All rights reserved.