-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.38 KB
/
index.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
40
<!DOCTYPE html>
<html lang="en">
<head>
<title>Matthew Bai | Critical Computation Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;1,100&display=swap" rel="stylesheet">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Artist Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>Matthew Bai</h1>
<p>Interactive artist@Pratt Institute</p>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li> <!-- 添加链接到 Portfolio 页面 -->
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div class="container" id="about">
<h2>About Me</h2>
<p>Matthew's artwork takes a critical view of social, political, and cultural issues. Matthew references public issues, exploring the contradictions between humanity, nature, and science.</p>
</div>
<div class="container" id="contact">
<h2>Contact</h2>
<p>[email protected]</p>
</div>
<footer>
<p>© 2023 Matthew Bai</p>
</footer>
</body>
</html>