HTML Generator with BULMA

Generate HTML and Meta tags to create a web page.
By specifying the title and description and OGP image path you want to set as a meta tag, the necessary meta tags will be generated automatically. It is also possible to generate HTML with necessary tags inserted by selecting the CSS framework to be used.

It is generated based on the description on this page : https://bulma.io/documentation/overview/start

HTML has been generated. You can copy the source code to the clipboard by clicking on it.

<html>
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title></title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">
    <meta name="viewport" content="width=device-width,initial-scale=1">
    <meta name="title" content="">
    <meta name="description" content="">
    <meta name="keywords" content="">

    <!-- Open Graph Meta Tags -->
    <meta property="og:type" content="website">
    <meta property="og:url" content="">
    <meta property="og:title" content="">
    <meta property="og:description" content="">
    <meta property="og:image" content="">

    <!-- Twitter -->
    <meta property="twitter:card" content="summary_large_image">
    <meta property="twitter:url" content="">
    <meta property="twitter:title" content="">
    <meta property="twitter:description" content="">
    <meta property="twitter:image" content="">
  </head>
<body>
</body>
</html>
;