top of page
Python

React

2022/2/12

ReactをHTMLに埋め込む

 ReactをHTMLに埋め込む 

<!DOCTYPE html>
<html lang="ja">
 <head>
   <meta charset="UTF-8">
   <title>Reactはじめ</title>
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
ディバイスの形式に合わせてた横幅をしていします。
   <meta name="discription" content="Reactをはじめます。"/>
   <meta name="keywords" content="React スクリプト"/>
seoホームページの内容を示します。
 </head>
 <body>
   <h2>「Reactのはじめ」</h1>
   <p>Reactを使ってみます。
   </p>
    <div id="Reactを埋め込む場所"></div>
 </body>
</html>

2021/6/18

bottom of page