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 73 74 75 76 77 78 79 80 81 82 83 84 85
| <!DOCTYPE html>
<html>
<head>
<!-- Metatags, links to Bootstrap and stylesheets -->
<title>xxxxxxxxxxxxxxx</title>
<meta name="description" content="Page description. No longer than 155 characters." />
<!-- Twitter Card data -->
<meta name="twitter:card" value="summary">
<!-- Open Graph data -->
<meta property="og:title" content="xxxxxxxxxxxxxxxx" />
<meta property="og:type" content="website" />
<meta property="og:url" content="http://www.example.com/" />
<meta property="og:image" content="http://example.com/image.jpg" />
<meta property="og:description" content="Description Here" />
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<!-- Header -->
<header>
<div class="container">
<nav id="menu" class="col-md-12" style="background-color: blue"> </nav>
<div class="col-md-12 home" style="background-image: url('img/about-bg.jpg')"></div>
</div>
</header>
<div class="container">
<!-- Section 1 -->
<section id="section_one" style="background-image: url('img/post-bg.jpg')">
<div class="row">
<div class="col-md-12"></div>
</div>
</section>
<!-- Section 2 -->
<section id="section_two" style="background-image: url('img/contact-bg.jpg')">
<div class="row">
<div class="col-md-12"></div>
</div>
</section>
<!-- Section 3 -->
<section id="section_three" style="background-image: url('img/home-bg.jpg')">
<div class="row">
<div class="col-md-12"></div>
</div>
</section>
<footer style="background-color: blue">
<div class="row">
<div class="col-md-12"></div>
</div>
</footer>
</div>
<!-- Bootstrap core JavaScript -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
</body>
</html> |
Partager