-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dave Palay
committed
Sep 19, 2019
1 parent
3afc60e
commit 4f2fe3d
Showing
1 changed file
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Document</title> | ||
<link | ||
rel="stylesheet" | ||
href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" | ||
integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" | ||
crossorigin="anonymous" | ||
/> | ||
<style> | ||
div { | ||
border: 1px solid brown | ||
} | ||
.row { | ||
border:1px solid red | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
<div class="container-fluid"> | ||
<div class="row"> | ||
<input id="slider" type="range" min="0" max="1" value="0" step="1" /> | ||
<span id="slider-value">0</span> | ||
|
||
</div> | ||
<div class="row"> | ||
<div class="col-md-3"> | ||
|
||
test<p>test</p> | ||
test<p>test</p> | ||
test<p>test</p> | ||
test<p>test</p> | ||
</div> | ||
<div class="col-md-9"> | ||
<svg > | ||
|
||
</svg> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
</body> | ||
</html> |