Skip to content

Commit

Permalink
Lay out a very basic setup
Browse files Browse the repository at this point in the history
  • Loading branch information
bressler95tops authored Sep 18, 2024
1 parent e373429 commit bd8f22a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
6 changes: 6 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.container {
display: block;
width: 100%;
max-width: 768px;
margin: 0 auto;
}
15 changes: 14 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,14 @@

<!DOCTYPE html>
<html>
<head>
<title>iFrame Host</title>
<link href="index.css" rel="stylesheet">
</head>
<body>
<div class="container">
<h1>iFrame Host</h1>
<iframe src="https://briancressler.com"></iframe>
</div>
<script src="index.js"></script>
</body>
</html>
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log("We may not even need this...");

0 comments on commit bd8f22a

Please sign in to comment.