-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (66 loc) · 2.31 KB
/
index.html
File metadata and controls
75 lines (66 loc) · 2.31 KB
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>数学与动画</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>数学与动画</h1>
<nav>
<ul>
<li><a href="">最新作品</a></li>
<li><a href="#">哈哈哈嘎</a></li>
<li><a href="#">关于我们</a></li>
</ul>
</nav>
</header>
<main>
<section class="news">
<h2>Processing动画作品</h2>
<p>这是锅大侠对数学、物理、动画以及OOP等相关知识的简单理解</p>
<p><a href="http://www.baidu.com">了解更多</a></p>
</section>
<section class="slogan">
<blockquote>每次微小的参数变化,都会产生意想不到的艺术效果</blockquote>
</section>
<section class="work1">
<img src="images/background.jpg" alt="数学与动画">
<div class="info">
<h2>《彩色毛线团》</h2>
<p>这是对圆形做随机移动时,所留下来的轨迹</p>
<p><a href="/caisemaoxian/index.html">代码演示</a></p>
</div>
</section>
<section class="product">
<div>
<img src="images/p1.jpg" alt="彩色腰带">
<h3>彩色腰带</h3>
<p>多个矩形的反弹轨迹</p>
</div>
<div>
<img src="images/p2.jpg" alt="模拟引力">
<h3>模拟引力</h3>
<p>静态中心对周围圆形的引力</p>
</div>
<div>
<img src="images/p3.jpg" alt="引力鬼脸">
<h3>引力鬼脸</h3>
<p>忘记是什么逻辑了</p>
</div>
</section>
<section class="newsletter">
<p>欢迎订阅数学与艺术的资讯</p>
<form>
<input type="=email" placeholder="请输入您的 Email" required>
<button type="submit">发送</button>
</form>
</section>
</main>
<footer>
<p>Copyright © 2024 数学与动画 All Rights Reserved.</p>
</footer>
</body>
</html>