Skip to content

Instantly share code, notes, and snippets.

View pupubird's full-sized avatar
✍️
Edit Status

pupubird pupubird

✍️
Edit Status
View GitHub Profile
<html>
<h1>hello</h1>
</html>

MongoDB Cheat Sheet

Show All Databases

show dbs

Show Current Database

.block{
display: block;
}
.inline{
display: inline;
color: red;
}
.inlineBlock{
display: inline-block;
color: blue;
<html>
<head>
<title></title>
<link rel="stylesheet" href="displayCss.css">
</head>
<body>
<p class="block">Hello world (display: block)</p>
<p class="block">Goodbye world (display: block)</p>
<hr>
<p class="inline">Hello world (display: inline)</p>
body {
padding: 0;
margin: 0;
background: url("assets/bg.jpg");
background-color: #223030;
color: #dddddd;
font-family: 'Raleway', sans-serif;
font-size: 22px;
<html>
<head>
<!--Title of the page-->
<title>Home</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway:200,400">
<link rel="stylesheet" href="styles.css">
</head>
body{
color: #777;
background: #4CAF50;
}
h1{
font-size:35px;
font-weight: 100;
}
<html >
<head>
<title>Contact Form</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
.boxshadow{
width: 300px;
height: 300px;
background-color: green;
box-shadow: 3px 3px 10px 5px;
}
<html>
<head>
<title></title>
<link rel="stylesheet" href="boxshadowcss.css">
</head>
<body>
<div class="boxshadow">
</div>