-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
39 lines (38 loc) · 1.47 KB
/
index2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nory Li</title>
<!-- 在 <head> 中添加 <style> 标签来设置背景图片样式 -->
<style>
body {
background-image: url('background.jpg'); /* 替换为实际图片文件名 */
background-size: cover; /* 让背景图片完全覆盖屏幕 */
background-repeat: no-repeat; /* 背景图片不重复 */
background-position: center; /* 图片居中显示 */
margin: 0;
padding: 20px; /* 设置内边距 */
font-family: Arial, sans-serif; /* 设置字体样式 */
color: #333; /* 设置文字颜色 */
text-align: center;
}
h1{
background-color: white;
}
</style>
</head>
<body>
<h1>Introduction to Web Design</h1>
<p>My name is Nory, I'm a second year student of Interactive Media Art. I have many interests, such as piano and painting. I'm a cat person. My slogan is, the harder I work, the happier my cat will be. I am interested in this course because I want to be able to create a web page of my own, and I hope to show my portfolio and photos of my life with my cat on the web page.</p>
<ul>
<li><a href="./me/index.html">HTML</a></li>
<li><a href="./css/index.html">CSS</a></li>
<li>Raster Graphics</li>
<li>Vector Graphics</li>
<li>Website Layout</li>
<li>Responsive Design</li>
<li>JavaScript</li>
<li>Final Project</li>
</ul>
</body>
</html>