User:Wyn: Difference between revisions
No edit summary |
No edit summary |
||
| Line 4: | Line 4: | ||
Unfortunately, It's a chinese version for now, when I have free time and I will translate it then we can chat about it!! | Unfortunately, It's a chinese version for now, when I have free time and I will translate it then we can chat about it!! | ||
<!DOCTYPE html> | |||
<html lang="en"> | |||
<head> | |||
<meta charset="UTF-8"> | |||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |||
<title>Yu Yin's Creative Portfolio</title> | |||
<style> | |||
/* 全局样式 */ | |||
body { | |||
font-family: 'Arial', sans-serif; | |||
background-color: #f3f3f3; | |||
margin: 0; | |||
padding: 0; | |||
color: #333; | |||
background-image: url('https://www.transparenttextures.com/patterns/gray-floral.png'); | |||
} | |||
/* 容器样式 */ | |||
.container { | |||
width: 85%; | |||
margin: 50px auto; | |||
padding: 20px; | |||
background: rgba(255, 255, 255, 0.9); | |||
border-radius: 20px; | |||
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2); | |||
position: relative; | |||
overflow: hidden; | |||
} | |||
/* 标题样式 */ | |||
h1 { | |||
text-align: center; | |||
font-size: 3rem; | |||
color: #333; | |||
text-transform: uppercase; | |||
letter-spacing: 2px; | |||
margin-bottom: 50px; | |||
position: relative; | |||
z-index: 2; | |||
} | |||
/* 主题装饰纹理 */ | |||
.container::before { | |||
content: ''; | |||
position: absolute; | |||
top: -50px; | |||
right: -50px; | |||
width: 300px; | |||
height: 300px; | |||
background: radial-gradient(circle, #e0c3fc, #8ec5fc); | |||
opacity: 0.7; | |||
border-radius: 50%; | |||
z-index: 1; | |||
} | |||
section { | |||
margin-bottom: 40px; | |||
padding: 20px; | |||
background-color: rgba(255, 255, 255, 0.8); | |||
border-radius: 15px; | |||
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); | |||
position: relative; | |||
} | |||
h2 { | |||
color: #e76f51; | |||
font-size: 2rem; | |||
margin-bottom: 15px; | |||
text-transform: uppercase; | |||
letter-spacing: 1px; | |||
position: relative; | |||
z-index: 2; | |||
} | |||
p { | |||
font-size: 1.2rem; | |||
line-height: 1.8; | |||
} | |||
/* 图片占位符 */ | |||
.img-placeholder { | |||
width: 100%; | |||
height: 200px; | |||
background-color: #ddd; | |||
border-radius: 10px; | |||
display: flex; | |||
align-items: center; | |||
justify-content: center; | |||
color: #666; | |||
font-size: 1.5rem; | |||
margin-bottom: 20px; | |||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); | |||
} | |||
/* 抽象装饰 */ | |||
.abstract-decor { | |||
position: absolute; | |||
top: 100px; | |||
left: -60px; | |||
width: 200px; | |||
height: 200px; | |||
background: conic-gradient(#fcb69f, #ff6f61, #f4c4f3, #6699ff); | |||
border-radius: 50%; | |||
z-index: 1; | |||
opacity: 0.8; | |||
filter: blur(20px); | |||
} | |||
/* 底部样式 */ | |||
footer { | |||
text-align: center; | |||
font-size: 1rem; | |||
color: #666; | |||
margin-top: 50px; | |||
} | |||
/* 媒体查询 */ | |||
@media (max-width: 768px) { | |||
h1 { | |||
font-size: 2.5rem; | |||
} | |||
h2 { | |||
font-size: 1.8rem; | |||
} | |||
p { | |||
font-size: 1.1rem; | |||
} | |||
} | |||
</style> | |||
</head> | |||
<body> | |||
<div class="container"> | |||
<h1>Yu Yin's Creative Portfolio</h1> | |||
<!-- 抽象装饰元素 --> | |||
<div class="abstract-decor"></div> | |||
<section> | |||
<h2>1. Introduction</h2> | |||
<p>Hello! I am Yu Yin, currently a student in the XPUB program. My interests include experimental publishing, digital art, and cross-media creative expression. I love exploring the relationship between technology and society, particularly in the fields of interactive art and digital culture.</p> | |||
<!-- Image Placeholder 1 --> | |||
<div class="img-placeholder">Insert Image 1</div> | |||
</section> | |||
<section> | |||
<h2>2. My Work</h2> | |||
<p>In my work, I focus on the promotion and copywriting of art projects. I write project descriptions, press releases, manage social media, and engage in art criticism.</p> | |||
<!-- Image Placeholder 2 --> | |||
<div class="img-placeholder">Insert Image 2</div> | |||
</section> | |||
<section> | |||
<h2>3. Projects I Want to Do</h2> | |||
<p>I am excited to explore projects that revolve around digital identity and virtual spaces, combining interactive art with data visualization. I am also interested in experimenting with new forms of digital publishing, particularly dynamic reading and participation methods in the online space.</p> | |||
<!-- Image Placeholder 3 --> | |||
<div class="img-placeholder">Insert Image 3</div> | |||
</section> | |||
</div> | |||
<footer> | |||
<p>© 2024 Yu Yin | Creative Portfolio</p> | |||
</footer> | |||
</body> | |||
</html> | |||
Revision as of 08:03, 11 September 2024
Hello, this is wyn!!
I am a writer and editor and now focusing on the art labour theme, here's the work and interview!
Unfortunately, It's a chinese version for now, when I have free time and I will translate it then we can chat about it!!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Yu Yin's Creative Portfolio</title>
<style>
/* 全局样式 */
body {
font-family: 'Arial', sans-serif;
background-color: #f3f3f3;
margin: 0;
padding: 0;
color: #333;
background-image: url('https://www.transparenttextures.com/patterns/gray-floral.png');
}
/* 容器样式 */
.container {
width: 85%;
margin: 50px auto;
padding: 20px;
background: rgba(255, 255, 255, 0.9);
border-radius: 20px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
position: relative;
overflow: hidden;
}
/* 标题样式 */
h1 {
text-align: center;
font-size: 3rem;
color: #333;
text-transform: uppercase;
letter-spacing: 2px;
margin-bottom: 50px;
position: relative;
z-index: 2;
}
/* 主题装饰纹理 */
.container::before {
content: ;
position: absolute;
top: -50px;
right: -50px;
width: 300px;
height: 300px;
background: radial-gradient(circle, #e0c3fc, #8ec5fc);
opacity: 0.7;
border-radius: 50%;
z-index: 1;
}
section {
margin-bottom: 40px;
padding: 20px;
background-color: rgba(255, 255, 255, 0.8);
border-radius: 15px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
position: relative;
}
h2 {
color: #e76f51;
font-size: 2rem;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
z-index: 2;
}
p {
font-size: 1.2rem;
line-height: 1.8;
}
/* 图片占位符 */
.img-placeholder {
width: 100%;
height: 200px;
background-color: #ddd;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: #666;
font-size: 1.5rem;
margin-bottom: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* 抽象装饰 */
.abstract-decor {
position: absolute;
top: 100px;
left: -60px;
width: 200px;
height: 200px;
background: conic-gradient(#fcb69f, #ff6f61, #f4c4f3, #6699ff);
border-radius: 50%;
z-index: 1;
opacity: 0.8;
filter: blur(20px);
}
/* 底部样式 */
footer {
text-align: center;
font-size: 1rem;
color: #666;
margin-top: 50px;
}
/* 媒体查询 */
@media (max-width: 768px) {
h1 {
font-size: 2.5rem;
}
h2 {
font-size: 1.8rem;
}
p {
font-size: 1.1rem;
}
}
</style>
</head> <body>
Yu Yin's Creative Portfolio
<section>
1. Introduction
Hello! I am Yu Yin, currently a student in the XPUB program. My interests include experimental publishing, digital art, and cross-media creative expression. I love exploring the relationship between technology and society, particularly in the fields of interactive art and digital culture.
</section>
<section>
2. My Work
In my work, I focus on the promotion and copywriting of art projects. I write project descriptions, press releases, manage social media, and engage in art criticism.
</section>
<section>
3. Projects I Want to Do
I am excited to explore projects that revolve around digital identity and virtual spaces, combining interactive art with data visualization. I am also interested in experimenting with new forms of digital publishing, particularly dynamic reading and participation methods in the online space.
</section>
<footer>
© 2024 Yu Yin | Creative Portfolio
</footer>
</body> </html>