1 Star 0 Fork 11

ttttt/lesson-resume

forked from 盛政/lesson-resume 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
contact.html 10.02 KB
一键复制 编辑 原始数据 按行查看 历史
盛政 提交于 2021-09-11 15:10 . remove font
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact - Personal Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Template CSS Files -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/preloader.min.css" rel="stylesheet">
<link href="css/circle.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/fm.revealator.jquery.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- CSS Skin File -->
<link href="css/skins/green.css" rel="stylesheet">
<!-- Live Style Switcher - demo only -->
<link rel="alternate stylesheet" type="text/css" title="blue" href="css/skins/blue.css" />
<link rel="alternate stylesheet" type="text/css" title="green" href="css/skins/green.css" />
<link rel="alternate stylesheet" type="text/css" title="yellow" href="css/skins/yellow.css" />
<link rel="alternate stylesheet" type="text/css" title="blueviolet" href="css/skins/blueviolet.css" />
<link rel="alternate stylesheet" type="text/css" title="goldenrod" href="css/skins/goldenrod.css" />
<link rel="alternate stylesheet" type="text/css" title="magenta" href="css/skins/magenta.css" />
<link rel="alternate stylesheet" type="text/css" title="orange" href="css/skins/orange.css" />
<link rel="alternate stylesheet" type="text/css" title="purple" href="css/skins/purple.css" />
<link rel="alternate stylesheet" type="text/css" title="red" href="css/skins/red.css" />
<link rel="alternate stylesheet" type="text/css" title="yellowgreen" href="css/skins/yellowgreen.css" />
<link rel="stylesheet" type="text/css" href="css/styleswitcher.css" />
<!-- Modernizr JS File -->
<script src="js/modernizr.custom.js"></script>
</head>
<body class="contact light">
<!-- Live Style Switcher Starts - demo only -->
<div id="switcher" class="">
<div class="content-switcher">
<h4>STYLE SWITCHER</h4>
<ul>
<li>
<a href="#" onclick="setActiveStyleSheet('purple');" title="purple" class="color"><img src="img/styleswitcher/purple.png" alt="purple"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('red');" title="red" class="color"><img src="img/styleswitcher/red.png" alt="red"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('blueviolet');" title="blueviolet" class="color"><img src="img/styleswitcher/blueviolet.png" alt="blueviolet"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('blue');" title="blue" class="color"><img src="img/styleswitcher/blue.png" alt="blue"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('goldenrod');" title="goldenrod" class="color"><img src="img/styleswitcher/goldenrod.png" alt="goldenrod"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('magenta');" title="magenta" class="color"><img src="img/styleswitcher/magenta.png" alt="magenta"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('yellowgreen');" title="yellowgreen" class="color"><img src="img/styleswitcher/yellowgreen.png" alt="yellowgreen"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('orange');" title="orange" class="color"><img src="img/styleswitcher/orange.png" alt="orange"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('green');" title="green" class="color"><img src="img/styleswitcher/green.png" alt="green"/></a>
</li>
<li>
<a href="#" onclick="setActiveStyleSheet('yellow');" title="yellow" class="color"><img src="img/styleswitcher/yellow.png" alt="yellow"/></a>
</li>
</ul>
<div id="hideSwitcher">&times;</div>
</div>
</div>
<div id="showSwitcher" class="styleSecondColor"><i class="fa fa-cog fa-spin"></i></div>
<!-- Live Style Switcher Ends - demo only -->
<!-- Header Starts -->
<header class="header" id="navbar-collapse-toggle">
<!-- Fixed Navigation Starts -->
<ul class="icon-menu d-none d-lg-block revealator-slideup revealator-once revealator-delay1">
<li class="icon-box">
<i class="fa fa-home"></i>
<a href="index.html">
<h2>Home</h2>
</a>
</li>
<li class="icon-box">
<i class="fa fa-user"></i>
<a href="about.html">
<h2>About</h2>
</a>
</li>
<li class="icon-box">
<i class="fa fa-briefcase"></i>
<a href="portfolio.html">
<h2>Portfolio</h2>
</a>
</li>
<li class="icon-box active">
<i class="fa fa-envelope-open"></i>
<a href="contact.html">
<h2>Contact</h2>
</a>
</li>
<li class="icon-box">
<i class="fa fa-comments"></i>
<a href="blog.html">
<h2>Blog</h2>
</a>
</li>
</ul>
<!-- Fixed Navigation Ends -->
<!-- Mobile Menu Starts -->
<nav role="navigation" class="d-block d-lg-none">
<div id="menuToggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul class="list-unstyled" id="menu">
<li><a href="index.html"><i class="fa fa-home"></i><span>Home</span></a></li>
<li><a href="about.html"><i class="fa fa-user"></i><span>About</span></a></li>
<li><a href="portfolio.html"><i class="fa fa-folder-open"></i><span>Portfolio</span></a></li>
<li class="active"><a href="contact.html"><i class="fa fa-envelope-open"></i><span>Contact</span></a></li>
<li><a href="blog.html"><i class="fa fa-comments"></i><span>Blog</span></a></li>
</ul>
</div>
</nav>
<!-- Mobile Menu Ends -->
</header>
<!-- Header Ends -->
<!-- Page Title Starts -->
<section class="title-section text-left text-sm-center revealator-slideup revealator-once revealator-delay1">
<h1>get in <span>touch</span></h1>
<span class="title-bg">contact</span>
</section>
<!-- Page Title Ends -->
<!-- Main Content Starts -->
<section class="main-content revealator-slideup revealator-once revealator-delay1">
<div class="container">
<div class="row">
<!-- Left Side Starts -->
<div class="col-12 col-lg-4">
<h3 class="text-uppercase custom-title mb-0 ft-wt-600 pb-3">Don't be shy !</h3>
<p class="open-sans-font mb-3">Feel free to get in touch with me. I am always open to discussing new projects, creative ideas or opportunities to be part of your visions.</p>
<p class="open-sans-font custom-span-contact position-relative">
<i class="fa fa-envelope-open position-absolute"></i>
<span class="d-block">mail me</span>lucy@mail.com
</p>
<p class="open-sans-font custom-span-contact position-relative">
<i class="fa fa-phone-square position-absolute"></i>
<span class="d-block">call me</span>+216 21 184 010
</p>
<ul class="social list-unstyled pt-1 mb-5">
<li class="facebook"><a title="Facebook" href="#"><i class="fa fa-facebook"></i></a>
</li>
<li class="twitter"><a title="Twitter" href="#"><i class="fa fa-twitter"></i></a>
</li>
<li class="youtube"><a title="Youtube" href="#"><i class="fa fa-youtube"></i></a>
</li>
<li class="dribbble"><a title="Dribbble" href="#"><i class="fa fa-dribbble"></i></a>
</li>
</ul>
</div>
<!-- Left Side Ends -->
<!-- Contact Form Starts -->
<div class="col-12 col-lg-8">
<form class="contactform" method="post" action="http://slimhamdi.net/tunis/light/php/process-form.php">
<div class="contactform">
<div class="row">
<div class="col-12 col-md-4">
<input type="text" name="name" placeholder="YOUR NAME">
</div>
<div class="col-12 col-md-4">
<input type="email" name="email" placeholder="YOUR EMAIL">
</div>
<div class="col-12 col-md-4">
<input type="text" name="subject" placeholder="YOUR SUBJECT">
</div>
<div class="col-12">
<textarea name="message" placeholder="YOUR MESSAGE"></textarea>
<button type="submit" class="btn btn-contact">Send Message</button>
</div>
<div class="col-12 form-message">
<span class="output_message text-center font-weight-600 text-uppercase"></span>
</div>
</div>
</div>
</form>
</div>
<!-- Contact Form Ends -->
</div>
</div>
</section>
<!-- Template JS Files -->
<script src="js/jquery-3.5.0.min.js"></script>
<script src="js/styleswitcher.js"></script>
<script src="js/preloader.min.js"></script>
<script src="js/fm.revealator.jquery.min.js"></script>
<script src="js/imagesloaded.pkgd.min.js"></script>
<script src="js/masonry.pkgd.min.js"></script>
<script src="js/classie.js"></script>
<script src="js/cbpGridGallery.js"></script>
<script src="js/jquery.hoverdir.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/custom.js"></script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tttttzz/lesson-resume.git
git@gitee.com:tttttzz/lesson-resume.git
tttttzz
lesson-resume
lesson-resume
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385