简单的企业网站HTML源代码模板。该模板包括基本的HTML结构、导航菜单、首页内容、关于我们页面、服务页面和联系方式页面。

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=“styles.css”> <script src=“https://code.jquery.com/jquery-3.6.0.min.js”>script> <script src=“scripts.js”>script> head> <body> <header> <div class=“container”> <h1>企业名称h1> <nav> <ul> <li><a href=“#home”>首页a>li> <li><a href=“#about”>关于我们a>li> <li><a href=“#services”>服务a>li> <li><a href=“#contact”>联系我们a>li> ul> nav> div> header> <section id=“home”> <div class=“container”> <h2>欢迎来到企业名称h2> <p>这里是一段简短的介绍文字。p> div> section> <section id=“about”> <div class=“container”> <h2>关于我们h2> <p>这里是关于企业的详细介绍。p> div> section> <section id=“services”> <div class=“container”> <h2>我们的服务h2> <div class=“service”> <h3>服务一h3> <p>这是服务一的详细描述。p> div> <div class=“service”> <h3>服务二h3> <p>这是服务二的详细描述。p> div> <div class=“service”> <h3>服务三h3> <p>这是服务三的详细描述。p> div> div> section> <section id=“contact”> <div class=“container”> <h2>联系我们h2> <form id=“contactForm”> <label for=“name”>姓名:label> <input type=“text” id=“name” name=“name” required> <br> <label for=“email”>邮箱:label> <input type=“email” id=“email” name=“email” required> <br> <label for=“message”>留言:label> <textarea id=“message” name=“message” rows=“5” required>textarea> <br> <button type=“submit”>发送button> form> div> section> <footer> <p>© 2023 企业名称. 保留所有权利。p> footer> body> html>

样式 (styles.css) 示例:

body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; } .container { width: 80%; margin: auto; overflow: hidden; } header { background: #333; color: #fff; padding-top: 30px; min-height: 70px; border-bottom: #77aaff 3px solid; } header h1 { float: left; margin-top: 0; } header nav { float: right; margin-top: 10px; } header nav ul { margin: 0; padding: 0; } header nav ul li { display: inline; } header nav ul li a { color: white; text-decoration: none; padding: 10px 15px; } section { padding: 20px 0; } footer { background: #333; color: #fff; text-align: center; padding: 10px; margin-top: 20px; }

JavaScript (scripts.js) 示例:

$(document).ready(function() { $(“#contactForm”).on(“submit”, function(event) { event.preventDefault(); alert(“感谢您的留言!”); }); });

这个模板是一个基础的企业网站结构,可以根据需要进行扩展和修改。希望这对你有所帮助!

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。