web-index/deepagens-static/contact.html
2025-10-24 09:55:24 +08:00

52 lines
1.8 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html lang="zh-CN">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>联系我们深度未来Deepagens</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<header class="nav">
<div class="container nav-inner">
<div class="logo">Deepagens</div>
<nav>
<a href="index.html">首页</a>
<a href="solutions.html">解决方案</a>
<a href="cases.html">成功案例</a>
<a href="pricing.html">定价</a>
<a href="resources.html">资源库</a>
<a href="about.html">关于我们</a>
<a href="contact.html" class="btn btn-outline">联系我们</a>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h1>联系与获取线索</h1>
<p class="sub">请填写表单,我们将在一个工作日内联系您。</p>
</div>
</section>
<section class="contact">
<div class="container">
<form id="contact-form" class="form">
<div class="grid-2">
<label>姓名<input type="text" name="name" required /></label>
<label>邮箱<input type="email" name="email" required /></label>
</div>
<div class="grid-2">
<label>公司<input type="text" name="company" /></label>
<label>手机号<input type="tel" name="phone" /></label>
</div>
<label>需求描述<textarea name="need" rows="4" placeholder="请简要描述您的需求…"></textarea></label>
<div class="actions">
<button class="btn btn-primary" type="submit">提交</button>
<span id="form-msg" class="muted"></span>
</div>
</form>
</div>
</section>
<script src="script.js"></script>
</body>
</html>