CSS
<script src="sweetalert2.min.js"></script>
<link rel="stylesheet" href="sweetalert2.min.css">
Quaint Quagga
<script src="sweetalert2.min.js"></script>
<link rel="stylesheet" href="sweetalert2.min.css">
/*body,h2,p,input are html tags */
/*.hello and #test are html class and id attributes*/
body {
background-color: blue;
}
h2 {
color: grey;
text-align: center;
}
p {
font-family: Sans-serif ;
font-size: 30px;
}
input{
width:50%;
}
.hello{
color:red;
}
#test{
color:blue;
}
h2 {
font-size:48px;
color:dark blue;
text-transform:uppercase;
text-align:center;
font-weight:normal;
}
.page-id-4 #main {
background-image: url(http://www.jeroenvanderwaal.com/wp-content/uploads/2015/03/achtergrond2.jpg);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center center;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
padding-top: 60px;
padding-bottom: 0px;
}
/* good */
.USERNAME {
}
/* good */
.UserName {
}
/*bad */
.user-name {
}
/* good */
.userName {
}
/* good */
.usernameprofile {
}
<p>Texto do parágrafo com um <em>elemento EM</em> nele contido.</p>
h2 {
font-size:48px;
color:dark blue;
text-transform:uppercase;
text-align:center;
font-weight:normal;
}
/* Any Element With Class Title */
.title {
}
/* for the Element With id nave*/
#nav {
}
/* Any Element With dive */
div {
}
/*Any Element With h2*/
h2 {
}
h2 {
font-size:48px;
color:dark blue;
text-transform:uppercase;
text-align:center;
font-weight:normal;
}
CSS is a cascading style sheets. It is used to style your website.