Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added new bio template #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions template/Haidar_Rifki/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* Author - Muhammad Haidar Rifki
* Email - haidarrfki@gmail.com
*/
body{
background: linear-gradient(90deg, #CFEED1 50%, #FF2768 50%);
}
.portfolio{
padding:6%;
text-align:center;
}
.heading{
background: #fff;
padding: 1%;
text-align: left;
box-shadow: 0px 0px 4px 0px #545b62;
}
.heading img{
width: 10%;
}
.bio-info{
padding: 5%;
background:#fff;
box-shadow: 0px 0px 4px 0px #b0b3b7;
}
.name{
font-family: 'Charmonman', cursive;
font-weight:600;
}
.bio-image{
text-align:center;
}
.bio-image img{
border-radius:50%;
}
.bio-content{
text-align:left;
}
.bio-content p{
font-weight:600;
font-size:30px;
}
p a {
color: #b0b3b7;
}
Binary file added template/Haidar_Rifki/img/me.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 63 additions & 0 deletions template/Haidar_Rifki/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
<html>
<!--- For male -->
<head>

<title>Haidar Rifki | Personal Website</title>

<!--- Default Stylesheet -->
<link href="css/style.css" rel="stylesheet">
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>

<!--- Font Awesome Icons -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">

</head>

<body>

<div class="container portfolio">
<div class="row">
<div class="col-md-12">
<div class="heading">
<img src="https://image.ibb.co/cbCMvA/logo.png" />
</div>
</div>
</div>
<div class="bio-info">
<div class="row">
<div class="col-md-6">
<div class="row">
<div class="col-md-12">
<div class="bio-image">
<img src="img/me.jpg" alt="image" />
</div>
</div>
</div>
</div>
<div class="col-md-6">
<div class="bio-content">
<h1>Hi there, I'm Haidar Rifki</h1>
<h6>
I am a backend developer.
I am person who likes challenges and learns new things, And i like to solve problems with code that can make people life easier.
feel free to reach me at <a href="mailto:haidarrfki@gmail.com">haidarrfki@gmail.com</a>
</h6>
<p>
<a href="https://www.facebook.com/haidar.rifki"><i class="fa fa-facebook-square"></i></a>
<a href="https://twitter.com/haidarrifki"><i class="fa fa-twitter-square"></i></a>
<a href="https://www.linkedin.com/in/haidarrifki/"><i class="fa fa-linkedin-square"></i></a>
<a href="https://github.com/haidarrifki"><i class="fa fa-github"></i></a>
</p>
</div>
</div>
</div>
</div>
</div>

</body>

<!--- Made with love by Vinit Shahdeo -->

</html>