Skip to content

Commit

Permalink
Update index.html with new styles and content
Browse files Browse the repository at this point in the history
  • Loading branch information
alexsc6955 committed Jan 7, 2024
1 parent 00a205b commit 2897224
Show file tree
Hide file tree
Showing 4 changed files with 59 additions and 12 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
assets/js/*
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"liveServer.settings.port": 5501
}
6 changes: 6 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

html, body {
height: 100%;
font-family: 'Dancing Script', cursive;
font-family: 'Roboto Mono', monospace;
}
61 changes: 49 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,52 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Penrose</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
<body>
<h1>
Hello World!
</h1>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
</body>
</html>
<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=Dancing+Script&family=Roboto+Mono:wght@300&display=swap" rel="stylesheet">
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="assets/css/style.css" />
</head>
<body class="overflow-auto bg-black">
<div class="w-100 h-100 d-flex flex-column justify-content-between">
<header class="bg-dark text-light py-4">
<div class="container">
<h1 class="h6">Penrose AI</h1>
</div>
</header>
<main class="w-100" role="main">
<div class="container">
<div class="row">
<div class="col-12 col-md-6 mx-auto">
<p class="lead text-center">
This site is under construction.
</p>
</div>
</div>
</div>
</main>
<footer class="w-100 border-top py-3">
<div class="container d-flex justify-content-end">
<p class="mb-0">
<small>
&copy; 2023 Penrose AI
</small>
</p>
</div>
</footer>
</div>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4"
crossorigin="anonymous"
></script>
</body>
</html>

0 comments on commit 2897224

Please sign in to comment.