<html>
<head>
<title>Stiltesting</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8">
<link href='https://fonts.googleapis.com/css?family=Raleway:400,500,600,300' rel='stylesheet' type='text/css'>
</head>
<body>
<a class="button button1" href="#">Knapp 1</a>
<a class="button button2" href="#">Knapp 2</a>
<a class="button button3" href="#">Knapp 3</a>
<a class="button button4" href="#">Knapp 4</a>
<img src="http://bloggfiler.no/frkfrontend.blogg.no/images/img_20180310_182824_fotor-2062398-3-1520766830443.jpg">
</body>
</html>
body
{
background-color: white;
}
.button {
padding: 10px 20px;
border: 1px solid black;
margin: 20px;
display: inline-block;
text-decoration: none;
color: black;
font-family: Raleway,sans-serif;
transition: 0.5s;
}
.button1
{
background-color: #6c757d;
border: 1px solid #5a6268;
color: #ffffff;
border-radius: 2px;
}
.button2
{
background-color: lightpink;
border: 4px solid lightpink;
border-radius: 20px;
}
.button3
{
border: 2px solid #e88f8f;
color: #e88f8f;
}
.button4
{
background-color: #f8f8f8;
border-radius: 3px;
border: 1px solid #ccc;
color: #444
}
.button1:hover
{
background-color: #5a6268;
box-shadow: 0px 0px 5px #5a6268;
}
.button2:hover
{
border-color: #ffd5db;
box-shadow: 0px 0px 8px lightpink;
}
.button3:hover
{
background-color: #e88f8f;
color: #ffffff;
}
.button4:hover
{
background-color: #eee;
}
img
{
width: 500px;
display: block;
}
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |