about page html css code example

Example 1: html template

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Page Title Goes Here</title>
  <meta name="description" content="Description Goes Here">
  <link rel="stylesheet" href="style.css">
</head>
<body>
  // if scripts is required add:
  <script src="js/scripts.js"></script>
</body>
</html>

Example 2: html css javascript

<!-- Answer to: "html css javascript" -->

<!--
  To keep things simple:
  HTML provides the basic structure of sites, which is enhanced and
  modified by other technologies like CSS and JavaScript. CSS
  is used to control presentation, formatting, and layout.
  JavaScript is used to control the behavior of different elements.
-->

For example:
<!--HTML-->
<div id="me">Click me!</div>
<!--CSS-->
<style>
  div {
    height: 128px; /* Makes the div 128px in height */
    width: 128px; /* Makes the div 128px in width */
    background: red; /* Makes the div's background, red */
  }
</style>
<!--JS-->
<script>
  document.getElementById("me".addEventListener("click", function(){
      document.getElementById("me").style.background = 'blue';
  });
</script>
<!-- If you want to test the code above, go to:https://www.w3schools.com/code/tryit.asp?filename=GDZ0PJDLYQ1V -->

<!--
  For more information, go to:
  https://blog.hubspot.com/marketing/web-design-html-css-javascript
-->

Tags:

Css Example