-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.html
69 lines (69 loc) · 1.6 KB
/
store.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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8">
<title>MiniSoftware 綠界商城</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #2ecc71;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-size: 36px;
}
.product {
border: 1px solid #ccc;
padding: 20px;
margin: 20px;
}
.product h2 {
font-size: 24px;
margin-top: 0;
}
.product p {
font-size: 16px;
margin-bottom: 0;
}
.contact {
text-align: center;
margin-top: 40px;
}
.contact p {
font-size: 18px;
margin-bottom: 10px;
}
.contact a {
font-size: 18px;
color: #2ecc71;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>MiniSoftware 綠界商城</h1>
</header>
<div class="product">
<h2>MiniExcel 1.0 License</h2>
<p>MiniExcel 簡單、高效避免OOM的.NET處理Excel查、寫、模版填充數據工具。</p>
<p>價格:999 TWD</p>
</div>
<div class="product">
<h2>MiniWord 1.0 License</h2>
<p>MiniWord .NET Word(docx) 模版導出引擎不需要安裝 Office COM+ 支持 Linux 和 Mac</p>
<p>價格:999 TWD</p>
</div>
<div class="contact">
<p>如有任何問題,請聯繫我們:</p>
<a href="mailto:shps951002@gmail.com">shps951002@gmail.com</a>
</div>
</body>
</html>