-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathframes.html
87 lines (70 loc) · 2.97 KB
/
frames.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="description" content="Sample Web Application for Test Automation">
<meta name="author" content="Dinesh Velhal">
<title>Frame Interactions</title>
<!-- Font Awesome -->
<link rel="stylesheet" href="css/all.css">
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Material Design Bootstrap
<link href="css/mdb.min.css" rel="stylesheet">-->
<!-- Your custom styles (optional)
<link href="css/style.css" rel="stylesheet">-->
</head>
<body>
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<!-- Brand/logo -->
<a class="navbar-brand abs" href="index.html">The Playground</a>
</nav>
<br>
<br>
<div class="container text-center">
<div class="row">
<div class="col-sm-12">
<div class="embed-responsive embed-responsive-16by9 shadow">
<iframe class="embed-responsive-item shadow" src="frame1.html" id="frame1"></iframe>
</div>
</div>
</div>
</div>
<br><br><br><br>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark" style="padding: 1px !important;">
<a class="navbar-brand" href="http://www.linkedin.com/in/dineshvelhal"><small class="font-weight-lighter">©
2019 Dinesh Velhal </small></a>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<small class="font-weight-lighter text-light mr-3">Coordinates: </small>
</li>
<li class="nav-item active">
<a href="http://www.linkedin.com/in/dineshvelhal" class="mr-3 fab fa-linkedin-in"></a>
</li>
<li class="nav-item">
<a href="https://twitter.com/dinesh_velhal" class="fab fa-twitter"></a>
</li>
</ul>
</div>
<form class="form-inline my-2 my-lg-0">
<small><a class="btn btn-success btn-sm" href="attribution.html" role="button"><i class="fa fa-heart"></i>
Thanks
To</a>
<a class="btn btn-light btn-sm" href="index.html" role="button"><i class="fa fa-home"></i>
Home</a></small>
</form>
</nav>
<!-- SCRIPTS -->
<!-- JQuery -->
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<!-- Bootstrap tooltips -->
<script type="text/javascript" src="js/popper.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- MDB core JavaScript
<script type="text/javascript" src="js/mdb.min.js"></script>-->
</body>
</html>