2 Star 0 Fork 0

Coolman/bsstudy

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
BootstrapTemplates_Marketing2.html 6.86 KB
一键复制 编辑 原始数据 按行查看 历史
zhanglianxin 提交于 2016-12-05 13:43 . recommit
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link rel="stylesheet" href="bootstrap.min.css">
<script src="jquery.min.js"></script>
<script src="bootstrap.min.js"></script> -->
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css">
<script src="//ajax.googleapis.bootcss.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="//maxcdn.bootstrapcdn.bootcss.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<style type="text/css">
/* Add a gray background color and some padding to the footer */
footer {
background-color: #f2f2f2;
padding: 25px;
}
.carousel-inner img {
width: 100%; /* Set width to 100% */
min-height: 200px;
}
/* Hide the carousel text when the screen is less than 600 pixels wide */
@media (max-width: 600px) {
.carousel-caption {
display: none;
}
}
</style>
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="javascript:;">Logo</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav">
<li class="active"><a href="javascript:;">Home</a></li>
<li><a href="javascript:;">About</a></li>
<li><a href="javascript:;">Projects</a></li>
<li><a href="javascript:;">Contact</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li><a href="javascript:;"><span class="glyphicon glyphicon-log-in"></span> Login</a></li>
</ul>
</div>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-sm-8">
<div class="carousel slide" id="myCarousel" data-ride="carousel">
<ol class="carousel-indicators">
<li class="active" data-target="myCarousel" data-slide-to="0"></li>
<li data-target="myCarousel" data-slide-to="1"></li>
</ol>
<div class="carousel-inner" role="listbox">
<div class="item active">
<img src="//unsplash.it/1200x400?text=IMAGE" alt="Image">
<div class="carousel-caption">
<h3>Sell $</h3>
<p>Money Money.</p>
</div>
</div>
<div class="item">
<img src="//unsplash.it/1200x400?text=Another%20Image%20Maybe" alt="Image">
<div class="carousel-caption">
<h3>More Sell $</h3>
<p>Lorem ipsum...</p>
</div>
</div>
</div>
<a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="col-sm-4">
<div class="well">
<p>Some text...</p>
</div>
<div class="well">
<p>Upcoming Events...</p>
</div>
<div class="well">
<p>Visit Our Blog</p>
</div>
</div>
</div>
<hr>
</div>
<div class="container text-center">
<h3>What We Do</h3>
<br>
<div class="row">
<div class="col-sm-3">
<img class="img-responsive" src="//unsplash.it/150x80?text=IMAGE" style="width: 100%;" alt="Image">
<p>Current Project</p>
</div>
<div class="col-sm-3">
<img class="img-responsive" src="//unsplash.it/150x80?text=IMAGE" style="width: 100%;" alt="Image">
<p>Project 2</p>
</div>
<div class="col-sm-3">
<div class="well">
<p>Some text...</p>
</div>
<div class="well">
<p>Some text...</p>
</div>
</div>
<div class="col-sm-3">
<div class="well">
<p>Some text...</p>
</div>
<div class="well">
<p>Some text...</p>
</div>
</div>
</div>
<hr>
</div>
<div class="container text-center">
<h3>Our Partners</h3>
<br>
<div class="row">
<div class="col-sm-2">
<img class="img-responsive" src="//unsplash.it/150x80?text=IMAGE" style="width: 100%;">
<p>Partner 1</p>
</div>
<div class="col-sm-2">
<img class="img-responsive" src="//unsplash.it/150x80?text=IMAGE" style="width: 100%;">
<p>Partner 2</p>
</div>
<div class="col-sm-2">
<img class="img-responsive" src="//unsplash.it/150x80?text=IMAGE" style="width: 100%;">
<p>Partner 3</p>
</div>
<div class="col-sm-2">
<img class="img-responsive" src="//unsplash.it/150x80?text=IMAGE" style="width: 100%;">
<p>Partner 4</p>
</div>
<div class="col-sm-2">
<img class="img-responsive" src="//unsplash.it/150x80?text=IMAGE" style="width: 100%;">
<p>Partner 5</p>
</div>
<div class="col-sm-2">
<img class="img-responsive" src="//unsplash.it/150x80?text=IMAGE" style="width: 100%;">
<p>Partner 6</p>
</div>
</div>
</div>
<br>
<footer class="container-fluid text-center">
<p>Footer Text</p>
</footer>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/Coolman/bsstudy.git
git@gitee.com:Coolman/bsstudy.git
Coolman
bsstudy
bsstudy
master

搜索帮助