This file contains 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
v = input("Insert a verb:") | |
pn = input("Insert a plural noum:") | |
n = input("Insert a noun:") | |
a = input("Insert an adjective:") | |
print("\nWhether you "+ v+ "\n" | |
"computer programs to\n" | |
"solve "+pn+" or just\n" | |
"for "+ n+ ", it is very\n" | |
"important that you\n" |
This file contains 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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Document</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="wrapper"> | |
<div id="header"> |
This file contains 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
for i in 1..300 | |
if i % 7 == 0 or i.to_s.include? '7' | |
puts "juf" | |
else | |
puts i | |
end | |
end |
This file contains 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
#footer { | |
background-color: #1d1b1b; | |
color: white; | |
text-align: center; | |
padding: 50px; | |
} | |
ul { | |
list-style-type: none; | |
padding: 0; |
This file contains 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
.blok { | |
background-color: red; | |
width: 300px; | |
heigth: 200px; | |
} | |
.belangrijk { | |
color: blue; | |
} |
This file contains 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
.blok { | |
width: 280px; | |
height: 180px; | |
transition: .2s; | |
background: url('http://placekitten.com/g/310/310'); | |
background-size: 280px 280px; | |
opacity: 0.4; | |
} | |
.blok:hover { |
This file contains 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
.blok { | |
width: 280px; | |
height: 180px; | |
transition: .2s; | |
background: url('http://placekitten.com/g/310/310'); | |
background-size: 280px 280px; | |
opacity: 0.4; | |
} | |
.blok:hover { |
This file contains 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
img { | |
border-radius: 50%; | |
} |
This file contains 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
.menu { | |
list-style-type: none; | |
padding: 10px 0; | |
margin: 0; | |
background: linear-gradient(90deg, yellow 40px, rgba(0,0,0,0) 40px);; | |
} | |
.menuitem { | |
margin-top: 50px; | |
margin-left: 10px; |
This file contains 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
@import url(http://fonts.googleapis.com/css?family=Permanent+Marker); | |
body { | |
font-family: 'Permanent Marker', cursive; | |
color: white; | |
text-align: center; | |
background-color: #cb1c26; | |
} | |
ul { |
NewerOlder