Skip to content

Instantly share code, notes, and snippets.

@dsilvadeepal
Created September 21, 2016 08:01
Show Gist options
  • Save dsilvadeepal/ff58639437d1808a62ceaf3fa404d233 to your computer and use it in GitHub Desktop.
Save dsilvadeepal/ff58639437d1808a62ceaf3fa404d233 to your computer and use it in GitHub Desktop.
Portfolio page
</html>
<head>
<link rel="stylesheet" href="path/to/font-awesome/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Kalam|Merienda:700" rel="stylesheet">
<title>My portfolio</title>
</head>
<body>
<!-- Nav bar section -->
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<ul class="nav navbar-nav navbar-right">
<li><a href="#about">About</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact Me</a></li>
</ul>
</div>
</nav>
<!-- About section -->
<div class="jumbotron">
<div class="container">
<div id="about" class="row">
<div class="col-md-12 text-center">
<h1>Jane Doette</h1>
<h2>Front End Developer</h2>
</div>
</div>
</div>
</div>
<!-- Skills section-->
<div id="skills" >
<div class="container text-center">
<div class="row">
<div class="col-md-12">
<h2>Skills</h2>
</div>
</div>
<div class="flex">
<div>
<i class="fa fa-html5 fa-5x" aria-hidden="true"></i>
<h4>HTML5</h4>
</div>
<div>
<i class="fa fa-css3 fa-5x" aria-hidden="true"></i>
<h4>CSS3</h4>
</div>
<div>
<i class="fa fa-html5 fa-5x" aria-hidden="true"></i>
<h4>Javascript</h4>
</div>
<div>
<i class="fa fa-html5 fa-5x" aria-hidden="true"></i>
<h4>JQuery</h4>
</div>
</div>
</div>
</div>
<hr>
<!-- Projects section -->
<div id="projects">
<div class="container text-center">
<div class="row">
<div class="col-md-12">
<h2>My Work</h2>
</div>
</div>
<div class="flex">
<img src="http://placehold.it/300x250">
<img src="http://placehold.it/300x250">
<img src="http://placehold.it/300x250">
<img src="http://placehold.it/300x250">
<img src="http://placehold.it/300x250">
<img src="http://placehold.it/300x250">
</div>
</div>
</div>
<!-- Contact section -->
<div id="contact">
<div class="container text-center">
<div class="row">
<div class="col-md-12">
<h2>Contact me</h2>
</div>
</div>
<div class="col-md-4">
<a href="https://www.linkedin.com/" target="_blank">
<i class="fa fa-linkedin fa-5x" aria-hidden="true"></i>
<h4>LinkedIn</h4>
</a>
</div>
<div class="col-md-4">
<a href = "https://github.com/" target="_blank">
<i class="fa fa-github fa-5x" aria-hidden="true"></i>
<h4>Github</h4>
</a>
</div>
<div class="col-md-4">
<a href ="https://twitter.com/" target="_blank">
<i class="fa fa-twitter fa-5x" aria-hidden="true"></i>
<h4>Twitter</h4>
</a>
</div>
</div>
</div>
</body>
</html>
/*
* {
border: 1px red solid;
}
*/
body{
font-family: 'Kalam', cursive;
font-size: 2em;
}
#about{
font-family: 'Merienda', cursive;
color:white;
}
#about h1{
padding-top: 20px;
}
.flex {
display: flex;
flex-direction: row;
justify-content: space-around;
flex-wrap: wrap;
align-items: center;
}
#projects h2{
padding-bottom: 35px;
}
.flex img {
padding: 0 10px 20px 0;
}
a:link {
text-decoration: none;
}
a:hover {
color: white;
}
hr{
width: 30%;
height: 2em;
border:0;
box-shadow: inset 0 12px 12px -12px rgba(24, 61, 97, 0.9);
}
.jumbotron {
background: url("https://static.pexels.com/photos/7347/pexels-photo.jpeg") no-repeat fixed center;
background-size: cover;
height: 80vh;
color: #fff;
}
#contact {
background: #000;
color: #fff;
}
#contact i {
font-size: 2.5em;
}
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet" />
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css" rel="stylesheet" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment