31 lines
No EOL
889 B
HTML
31 lines
No EOL
889 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>Bubble</title>
|
|
<link rel="stylesheet" type="text/css" media="screen" href="/static/home.css" />
|
|
</head>
|
|
|
|
<body>
|
|
<main>
|
|
<div class="lamp-list">
|
|
<div class="lamp" id="lamp-cuisine">
|
|
<img src="/static/lightbulb-off.svg" alt="off"/>
|
|
<h3>Lampe cuisine</h3>
|
|
</div>
|
|
<div class="lamp" id="lamp-salon">
|
|
<img src="/static/lightbulb-off.svg" alt="off"/>
|
|
<h3>Lampe salon</h3>
|
|
</div>
|
|
<div class="lamp" id="lamp-bureau">
|
|
<img src="/static/lightbulb-off.svg" alt="off"/>
|
|
<h3>Lampe bureau</h3>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="/static/home.js">
|
|
</script>
|
|
</body>
|
|
</html> |