parent
e52bd70f11
commit
781568ccdf
@ -1,3 +1,10 @@
|
||||
<div class="code_input">
|
||||
<textarea class="code_input_textarea" id="code_input" name="code_input" placeholder="Enter your code here..."></textarea>
|
||||
<textarea
|
||||
class="code_input_textarea"
|
||||
id="code_input"
|
||||
name="code_input"
|
||||
placeholder="Enter your code here..."
|
||||
></textarea>
|
||||
<button (click)="onRunButtonClicked()">Run</button>
|
||||
<p>{{ reponse }}</p>
|
||||
</div>
|
||||
|
@ -0,0 +1,7 @@
|
||||
.header-card {
|
||||
width: 35%;
|
||||
|
||||
img {
|
||||
width: 10%;
|
||||
}
|
||||
}
|
@ -1 +1,6 @@
|
||||
<p>header works!</p>
|
||||
<div class="header-card">
|
||||
<h2>{{ title }}</h2>
|
||||
<p>{{ description }}</p>
|
||||
<p>Version : {{ version }}</p>
|
||||
<img [src]="imgSrc" alt="imgSrc" />
|
||||
</div>
|
||||
|
After Width: | Height: | Size: 24 KiB |
@ -1,13 +1,19 @@
|
||||
<!doctype html>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Sandkasten</title>
|
||||
<base href="/">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="icon" type="image/x-icon" href="favicon.ico">
|
||||
</head>
|
||||
<body>
|
||||
<app-root></app-root>
|
||||
</body>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<title>Sandkasten</title>
|
||||
<base href="/" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<link rel="icon" type="image/x-icon" href="assets/img/logo.png" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
<app-root></app-root>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1 +1,3 @@
|
||||
/* You can add global styles to this file, and also import other style files */
|
||||
* {
|
||||
font-family: Roboto, Helvetica, sans-serif;
|
||||
}
|
Loading…
Reference in new issue