avatar
Doãn Tú
HN
This is MEEEEEEEEEEEEEEEEEEEEEEEEEEE
1

Codes

5

Answers

Code compilers

Top answers

0
Thẻ <code> trong HTML
February-12-2022
<!DOCTYPE html>
<html>
<body>
    <code>SELECT Full_name, City FROM sinh_vien;</code>
    <p>SELECT Full_name, City FROM sinh_vien;</p>
</body>
</html>
0
Use Css to Style
February-12-2022
<html>
<head>
<style>
code {
  font-family: 
    Consolas,"courier new";
  color: crimson;
  
    background-color: #f1f1f1;
  padding: 2px;
  font-size: 
    105%;
}
</style>
</head>
<body>

<p>The HTML 
    <code>button</code> tag defines a clickable button.</p>
<p>The CSS 
    <code>background-color</code> property defines the background color of an 
    element.</p>

</body>
</html>
0
php show error
December-20-2021
ini_set('display_errors', 1);
0
setup cakephp
December-20-2021
/cake_install/
    bin/
    config/
    logs/
    plugins/
    src/
    tests/
    tmp/
    vendor/
    webroot/ (this directory is set as DocumentRoot)
    .gitignore
    .htaccess
    .travis.yml
    composer.json
    index.php
    phpunit.xml.dist
    README.md
0
HTML a target Attribute
December-20-2021
    <a href="https://www.w3schools.com" target="_blank">Visit W3Schools</a>