show dbs
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
<html> | |
<h1>hello</h1> | |
</html> |
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
.block{ | |
display: block; | |
} | |
.inline{ | |
display: inline; | |
color: red; | |
} | |
.inlineBlock{ | |
display: inline-block; | |
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
<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> |
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
body { | |
padding: 0; | |
margin: 0; | |
background: url("assets/bg.jpg"); | |
background-color: #223030; | |
color: #dddddd; | |
font-family: 'Raleway', sans-serif; | |
font-size: 22px; |
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
<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> |
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
body{ | |
color: #777; | |
background: #4CAF50; | |
} | |
h1{ | |
font-size:35px; | |
font-weight: 100; | |
} |
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
<html > | |
<head> | |
<title>Contact Form</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="container"> |
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
.boxshadow{ | |
width: 300px; | |
height: 300px; | |
background-color: green; | |
box-shadow: 3px 3px 10px 5px; | |
} |
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
<html> | |
<head> | |
<title></title> | |
<link rel="stylesheet" href="boxshadowcss.css"> | |
</head> | |
<body> | |
<div class="boxshadow"> | |
</div> |
NewerOlder