Last active
August 25, 2016 16:06
-
-
Save luigidon/fcb606efb2cd5ae7174a3219b381adcb to your computer and use it in GitHub Desktop.
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> | |
<head> | |
<title>Matjaž Gerčar | Fakebook</title> | |
<meta charset="utf-8"> | |
<link rel="stylesheet" href="style.css"> | |
<link href="https://fonts.googleapis.com/css?family=Baloo+Paaji" rel="stylesheet"> | |
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet"> | |
</head> | |
<body> | |
<h1><i>FAKEBOOK</i></h1> | |
<div class="SearchLine">Search: <input type="text" placeholder="Search by name"></div> | |
<h2>Matjaž Gerčar</h2> | |
<img class="person" src="https://scontent-fra3-1.xx.fbcdn.net/v/t1.0-9/13043773_10153664747213790_6451715789373381953_n.jpg?oh=6c65077169c735216c09dbaf07e63cc7&oe=5846B3E0" alt="Matjaž Gerčar"> | |
<br> | |
<br> | |
<button class="btnadd">Add a friend</button> | |
<br> | |
<div class="PersonData"> | |
<p><strong>City: </strong>Domžale</p> | |
<p><strong>Age: </strong>33</p> | |
<p><strong>Eduaction: </strong>SmartNinja Universe</p> | |
<p><strong>Hobby: </strong>Juggling, wakeboarding</p> | |
<p><strong>FB friends: </strong>2000</p> | |
<p><strong>FB enemies: </strong>10</p> | |
</div> | |
</body> | |
</html> |
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
body{ | |
font-family: 'Raleway', sans-serif; | |
} | |
h1{ | |
font-family: 'Baloo Paaji', cursive; | |
text-align: center; | |
} | |
.person{ | |
width: 55%; | |
border: 1px solid lightgrey; | |
} | |
.person:hover{ | |
border: 1px dotted lightgrey; | |
} | |
.SearchLine{ | |
background-color: lightgrey; | |
padding: 5px 0 5px 10px; | |
} | |
.btnadd{ | |
padding: 15px 15px 15px 15px; | |
border-radius: 15px; | |
box-shadow: 2px 2px 2px #888888; | |
} | |
.btnadd:hover{ | |
box-shadow: 0px 0px 0px #888888; | |
} | |
.PersonData{ | |
background-color: lightgrey; | |
padding: 10px; | |
margin-top: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment