CoolFace
Apppublic

OogwayWisdom/javascript_hello

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes
index.html17 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="en">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Welcome App</title>7    <link rel="stylesheet" href="styles.css">8</head>9<body>10    <div class="container">11        <h1>Welcome App</h1>12        <input type="text" id="nameInput" placeholder="Enter your name">13        <button id="sayHelloBtn">Say Hello</button>14    </div>15    <script src="script.js"></script>16</body>17</html>