mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
765 B
37 lines
765 B
6 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>Webpack App</title>
|
||
|
<link
|
||
|
href="node_modules/bootstrap/dist/css/bootstrap.css"
|
||
|
rel="stylesheet"
|
||
|
/>
|
||
|
</head>
|
||
|
<style>
|
||
|
.demo__img {
|
||
|
width: 400px;
|
||
|
display: block;
|
||
|
margin-bottom: 16px;
|
||
|
}
|
||
|
|
||
|
textarea.textbox {
|
||
|
height: 400px;
|
||
|
border: 1px solid #8db5e4;
|
||
|
margin-bottom: 16px;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
margin: 0 auto;
|
||
|
}
|
||
|
</style>
|
||
|
<body>
|
||
|
<div class="container">
|
||
|
<img class="demo__img" src="assets/01_rust_loves_js.png" />
|
||
|
<textarea class="form-control textbox"> </textarea>
|
||
|
<button type="buttont" class="btn btn-primary">Evaluate</button>
|
||
|
<p class="output">Test</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|