Created
August 10, 2018 21:38
-
-
Save riyaadazad/7bf7076270066a2f24243ddce9bb146a to your computer and use it in GitHub Desktop.
Responsive webpage template provided by "w3schools.com" utilizing the W3.CSS stylesheet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<title>W3.CSS</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css"> | |
<style> | |
/* Set the height of the grid so that left and right col can be 100% (adjust as needed) */ | |
.w3-row {height: 500px} | |
/* Set a 100% height to left and right col */ | |
.w3-col.m2, w3-col.m2 {height: 100%;} | |
/* On small screens, set grid height to 'auto' */ | |
@media screen and (max-width: 601px) { | |
.w3-row {height:auto;} | |
} | |
</style> | |
<body> | |
<div class="w3-topnav w3-large w3-green"> | |
<a href="#">Portfolio</a> | |
<a href="#">Home</a> | |
<a href="#">About</a> | |
<a href="#">Gallery</a> | |
<a href="#">Contact</a> | |
</div> | |
<div class="w3-center"> | |
<div class="w3-row"> | |
<div class="w3-col m2 w3-light-grey"> | |
<p><a href="#">Link</a></p> | |
<p><a href="#">Link</a></p> | |
<p><a href="#">Link</a></p> | |
</div> | |
<div class="w3-col m8 w3-container"> | |
<h1>Welcome</h1> | |
<p class="w3-justify">Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.</p> | |
<hr> | |
<h3>Test</h3> | |
<p>Lorem ipsum...</p> | |
</div> | |
<div class="w3-col m2 w3-light-grey w3-padding"> | |
<div class="w3-card-2 w3-padding"> | |
<p>ADS</p> | |
</div><br> | |
<div class="w3-card-2 w3-padding"> | |
<p>ADS</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
<footer class="w3-container w3-green"> | |
<h5>Footer</h5> | |
<p>Footer information goes here</p> | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment