video elements
This commit is contained in:
@@ -1,8 +1,25 @@
|
|||||||
body {
|
body {
|
||||||
background-color: azure;
|
background-color: azure;
|
||||||
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header {
|
.header {
|
||||||
color: black;
|
color: black;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.video {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mainvideo {
|
||||||
|
width: 60%;
|
||||||
|
float: left;
|
||||||
|
border-color: 1px sold blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lastpicture {
|
||||||
|
width: 40%;
|
||||||
|
float: right;
|
||||||
|
border-color: 1px solid red;
|
||||||
|
}
|
||||||
@@ -1,15 +1,26 @@
|
|||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
||||||
<link rel='stylesheet' href='/css/stylesheet.css' />
|
|
||||||
|
|
||||||
<title>5G drone API</title>
|
<head>
|
||||||
</head>
|
<meta charset="UTF-8">
|
||||||
<body>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<h1 class="header">5G Drone API</h1>
|
<link rel='stylesheet' href='/css/stylesheet.css' />
|
||||||
<p><%- api_connected %></p>
|
|
||||||
<div>Hello World!</div>
|
<title>5G drone API</title>
|
||||||
</body>
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1 class="header">5G Drone API</h1>
|
||||||
|
<div class="video">
|
||||||
|
<div class="mainvideo">
|
||||||
|
</div>
|
||||||
|
<div class="lastpicture">
|
||||||
|
<img id="picture">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<p><%- api_connected %></p>
|
||||||
|
<div>Hello World!</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
Reference in New Issue
Block a user