14 lines
239 B
Lua
14 lines
239 B
Lua
<html>
|
|
<head>
|
|
<title>ESP 32 web page</title>
|
|
<link href="style.css" rel="stylesheet"/>
|
|
</head>
|
|
<body>
|
|
<h1>Hello, world!</h1>
|
|
<?lua
|
|
nb = nb + 1
|
|
console(nb.." Chargements")
|
|
print(nb.." Chargements")
|
|
?>
|
|
</body>
|
|
</html>
|