html_practice/myhtml.html

21 lines
556 B
HTML
Raw Permalink Normal View History

2024-08-23 10:22:49 +02:00
<!doctype html>
<html lang="zh-CN">
<head>
2024-08-23 13:41:29 +02:00
<script src="myjs.js" defer></script>
<link rel="stylesheet" href="mycss.css"/>
<meta charset="utf-8"/>
2024-08-23 10:22:49 +02:00
<title>Dan's Homepage &gt3&lt</title>
2024-08-23 13:41:29 +02:00
<link rel="icon" href="file:///Users/dan/Pictures/IMG_9295.JPG" type="image/x-icon" />
2024-08-23 10:22:49 +02:00
</head>
<body>
<img src="file:///Users/dan/Pictures/IMG_9295.JPG" alt="My test image" width="500" />
2024-08-23 13:41:29 +02:00
<h2>Hi, my name is Dan.</h2>
<ul>
<li>Education</li>
<li>Work Experience</li>
<li>Languages</li>
<li>Hobbies</li>
</ul>
2024-08-23 10:22:49 +02:00
</body>
</html>