-
Notifications
You must be signed in to change notification settings - Fork 0
/
xinwen.html
122 lines (119 loc) · 5.9 KB
/
xinwen.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>新闻</title>
<link href="images/favicon.svg" rel="icon" type="image/x-icon"/>
<link href="images/favicon.svg" rel="bookmark" type="image/x-icon"/>
<!-- 引入公共样式文件 -->
<link rel="stylesheet" href="css/comm.css">
<!-- 引入新闻样式文件 -->
<link rel="stylesheet" href="css/xinwen.css">
</head>
<body>
<div class="header-box" style="display: none; width: 100%; height: 80px;"></div>
<header>
<div class="content">
<div class="logo">
<img src="images/comm/logo.png" alt="">
<p>亚历山大美术馆</p>
</div>
<nav>
<ul>
<li><a href="index.html">首页</a></li>
<li class="active"><a href="xinwen.html">新闻</a></li>
<li><a href="jiaoyu.html">教育</a></li>
<li><a href="lianxi.html">联系</a></li>
<li><a href="denglu.html">会员</a></li>
</ul>
</nav>
</div>
</header>
<section class="news">
<div class="content">
<div>
<a href="xinwen_neirong.html">
<div>
<div class="img" style="background: url('images/xinwen/news4.jpg');"></div>
<!-- <img src="images/xinwen/news4.jpg" width="100%"> -->
</div>
<div>
<h1>皮相之下:与马克奎恩的对话</h1>
<p>马克·奎恩的艺术主要探讨了什么是身处于世界之中的“人”——关注于人类和自然的关系以及这种关系如何通过人类的欲望来进行调节;另外他的作品也探讨身份和美感意味,人们为什么被迫去改变自我等等问题,并通过作品来表现当下趋势和社会历史。</p>
</div>
</a>
</div>
<div>
<a href="xinwen_neirong.html">
<div>
<div class="img" style="background: url('images/xinwen/news3.jpg');"></div>
</div>
<div>
<h1>雷安德罗·埃利希:期待意外</h1>
<p>雷安德罗·埃利希的作品可以有一千种解读方式,有时候我看到一些解读方式是我从来没有想到过的,而有一些解读是我完全认同的,我觉得都是非常有意思的,都是视觉艺术能够带给我们的收获。</p>
</div>
</a>
</div>
<div>
<a href="xinwen_neirong.html">
<div>
<div class="img" style="background: url('images/xinwen/news2.jpg');"></div>
</div>
<div>
<h1>希区柯克与当代艺术</h1>
<p>希区柯克一生拍摄了将近50多部电影作品,他应该说是电影诞生以来世界上最成功的一个电影导演,成功是多方面的:比如他是一个英国人,但是他非常成功地从欧洲转移到好莱坞,并在好莱坞的制片厂制度内非常舒适、自我地生存下来,并且获得极高的地位。</p>
</div>
</a>
</div>
</div>
<div class="pages">
<ul>
<li>
<a href="?page=1"><i data-feather="chevron-left"></i></a>
</li>
<li class="active">
<a href="?page=1">1</a>
</li>
<li>
<a href="?page=1"><i data-feather="chevron-right"></i></a>
</li>
</ul>
</div>
</section>
<footer>
<div class="content">
<div class="info">
<div class="about">
<img src="images/comm/logo.png" alt="">
<h1>亚历山大美术馆</h1>
<p>为艺术家、研究人员和策展人提供自由表达的空间,并与观众一同深入感受幽微且浓烈的体验。</p>
</div>
<div class="contact">
<h2>联系我们</h2>
<p><i data-feather="map-pin"></i> 北京市东城区长安街</p>
<p><i data-feather="mail"></i> <a href="mailto:[email protected]">[email protected]</a></p>
<p><i data-feather="phone"></i> <a href="tel:4001000000">400-001-0000</a></p>
</div>
<div class="open-hours">
<h2>开放时间</h2>
<p>上午9.30<br>至<br>下午6.00</p>
</div>
<div class="links">
<h2>友情链接</h2>
<p><a href="//www.namoc.org/" target="_blank">中国美术馆</a></p>
<p><a href="//www.cafamuseum.org/" target="_blank">中央美术学院美术馆</a></p>
<p><a href="//www.jsmsg.com/" target="_blank">江苏省美术馆</a></p>
<p><a href="//www.gdmoa.org/" target="_blank">广东美术馆</a></p>
</div>
</div>
<div class="copyright">
<p>© Copyright 2020 亚历山大美术馆. All Rights Reserved</p>
</div>
</div>
</footer>
<!-- 引入feather icon文件 -->
<script src="js/feather.min.js"></script>
<!-- 引入公共脚本文件 -->
<script src="js/comm.js"></script>
</body>
</html>