<html lang="ja"> <head> <title>はじめてのWebページ</title> </head> <body> <p>こんにちは、世界!</p> </body> </html>
< >〜</ >
の タグ でしるしをつける言語<html lang="ja"> <head> <title>はじめてのWebページ</title> <style> .title { font-size: 24px; font-weight: bold; color: #333333; } .greetings { font-size: 18px; } .name { color: #FF6666; font-weight: bold; } </style> </head> <body> <h1 class="title">ごあいさつ</h1> <p class="greetings">こんにちは、<span class="name">世界</span>!</p> </body> </html>
<script> var yourName = window.prompt('あなたのお名前は?'); var nameElement = document.querySelector('.name'); nameElement.innerText = yourName; </script>
</body>
の直前に書きましょう<script>
タグの中に書くvar yourName = window.prompt('あなたのお名前は?');
var nameElement = document.querySelector('.name')
nameElement.innerText = yourName;
<html lang="ja"> <head> <title>おみくじ</title> </head> <body> <button class="omikuji-button">おみくじを引く</button> <div class="result">ここに結果が表示されます</div> </body> </html>
<script> var omikujiButton = document.querySelector('.omikuji-button'); var resultElement = document.querySelector('.result'); omikujiButton.addEventListener('click', function(){ // おみくじボタンをクリックするとここが実行される var score = Math.floor(Math.random() * 10); // scoreに0から9の整数が代入される var result = ''; if (score === 9) { result = '大吉です'; } else if (score > 2) { result = '吉です'; } else { result = '凶です'; } resultElement.innerText = result; }); </script>
<img src="画像ファイル名">
<input type="text">
<input type="checkbox">
// 足し算 5 + 4 + 3 + 2 + 1 // 15 // かけ算 5 * 4 * 3 * 2 * 1 // 120 // 引き算 10 - 7 // 3 // 割り算 17 / 4 // 4.25 // 割り算のあまり 17 % 4 // 1
var time = new Date(); time.getFullYear(); // 2016 time.getMonth(); // 11 (0から11の数字) time.getDate(); // 10 time.getHours(); // 14 time.getMinutes(); // 30 time.getSeconds(); // 22
<div>I have...</div> <div> <label> <input type="checkbox" class="have-pen"> ペン(pen) </label> </div> <div> <label> <input type="checkbox" class="have-apple"> アッポー(apple) </label> </div> <div> <label> <input type="checkbox" class="have-pineapple"> パイナッポー(pineapple) </label> </div> <div> <button class="ummm">Ummm!!</button> </div> <div class="result"></div> <div class="result-en"></div>