-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
72 lines (72 loc) · 2.86 KB
/
home.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<title>品牌故事撰写与印刷服务</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">品牌故事</div>
<ul class="nav-links">
<li><a href="#home">首页</a></li>
<li><a href="#services">服务</a></li>
<li><a href="#contact">联系我们</a></li>
</ul>
</nav>
</header>
<section id="home" class="hero">
<div class="hero-content">
<h1>提升品牌价值,助力融资成功</h1>
<p>我们专注于为企业打造属于自己的品牌故事</p>
<div class="hero-buttons">
<a href="#services" class="btn">了解更多</a>
<a href="#contact" class="btn">联系我们</a>
</div>
</div>
</section>
<section id="services" class="services">
<div class="container">
<h2>我们的服务</h2>
<div class="service-item">
<h3>品牌故事策划</h3>
<p>我们深入了解您的企业文化、核心价值观和发展历程,为您量身打造引人入胜的品牌故事。</p>
</div>
<div class="service-item">
<h3>撰写和编辑</h3>
<p>由专业撰稿人和编辑团队精心打磨每一个字,让您的品牌故事更加生动、可信。</p>
</div>
<div class="service-item">
<h3>设计和印刷</h3>
<p>高质量的设计和印刷,让您的品牌故事以最美好的形式呈现给潜在投资者,提升品牌感,提高融资成功率。</p>
</div>
<div class="service-item">
<h3>定制化服务</h3>
<p>根据您的需求,提供个性化的小册子设计和印刷方案。</p>
</div>
</div>
</section>
<section id="contact" class="contact">
<div class="container">
<h2>联系我们</h2>
<div class="contact-info">
<p>电话:+86 198 6838 4561</p>
</div>
<!-- <form action="submit_form.php" method="post">
<label for="name">姓名:</label>
<input type="text" id="name" name="name" required>
<label for="email">邮箱:</label>
<input type="email" id="email" name="email" required>
<label for="message">留言:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">提交</button>
</form> -->
</div>
</section>
<footer>
<p>© 2024 品牌故事定制. 版权所有.</p>
</footer>
</body>
</html>