Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
Signed-off-by: Tyler M. Neher <tyler@neherdata.com>
  • Loading branch information
tylermneher committed Jun 19, 2024
1 parent 22c9787 commit 824a7ae
Show file tree
Hide file tree
Showing 6 changed files with 214 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
node_modules/
1 change: 1 addition & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include: [".well-known"]
64 changes: 64 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
<!DOCTYPE HTML>
<html lang="en">

<head>

<meta charset="UTF-8" />

<title>Neher Data Systems - Credit Forms</title>
<meta name="description" content="Neher Data Systems - Credit forms for requesting freezes and reports by mail.">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="stylesheet" type="text/css" href="styles-index-and-404.css">

<meta property="og:type" content="website" />
<meta name="og:description" content="Neher Data Systems - Credit forms for requesting freezes and reports by mail.">
<meta property="og:title" content="Neher Data Systems - Credit Forms" />
<!-- <meta property="og:image"
content="https://raw.githubusercontent.com/tylermneher/www.tylermneher.me/main/og-image.png" /> -->
<meta property="og:image:type" content="image/png" />
<meta property="og:url" content="https://credit-forms.neherdata.com/" />

<!-- <link rel="icon" type="image/x-icon" href="static/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="static/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png" /> -->


<link rel="canonical" href="https://credit-forms.neherdata.com/" />


</head>

<body>

<div id="page-container">
<div id="content-wrap">
<div class="row">
<div class="column">
<p>
<img src="neherdata.png" alt=" neherdata" />
</p>
</div>
<div class="column">
<h1>Neher Data Systems</h1>
<h2>Credit Report and Freeze Request Forms</h2>
<h3><a data-cy="index-body-report" href="report-forms.html">Report Requests</a> | <a
data-cy="index-body-freeze" href="freeze-forms.html">Freeze Requests</a></h3>



</div>
</div>
</div>
<footer id="footer">
<p align="center">© 2024 <a data-cy="index-footer-neherdata" href="https://www.neherdata.com/">Neher Data
Systems</a></p>
</footer>
</div>

</body>



</html>
Binary file added neherdata.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
74 changes: 74 additions & 0 deletions styles-index-and-404.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
body {
font-family: "Lucida Console", Courier, monospace;
text-align: center;
overflow: hidden;
}

h1 {
font-family: "Lucida Console", Courier, monospace;
font-style: oblique;
text-align: center;
}

h2 {
font-family: "Lucida Console", Courier, monospace;
/* font-style: oblique; */
text-align: center;
}

h3 {
font-family: "Lucida Console", Courier, monospace;
font-style: oblique;
text-align: center;
}

hr {
margin-left: 50;
width: 80vw;
}

#page-container {
position: relative;
min-height: 100vh;
}

#content-wrap {
padding-bottom: 2.5rem;
/* Footer height */
}


#footer {
font-family: "Lucida Console", Courier, monospace;
width: 100%;
position: absolute;
height: 2.5rem;
/* bottom: 0; */
left: 0;
}



.column {
float: left;
width: 50%;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1350px) {
.column {
width: 100%;
}
}

img {
max-width: 80vw;
max-height: 80vh;
}
73 changes: 73 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
body {
font-family: "Lucida Console", Courier, monospace;
text-align: center;
}

h1 {
font-family: "Lucida Console", Courier, monospace;
font-style: oblique;
text-align: center;
}

h2 {
font-family: "Lucida Console", Courier, monospace;
/* font-style: oblique; */
text-align: center;
}

h3 {
font-family: "Lucida Console", Courier, monospace;
font-style: oblique;
text-align: center;
}

hr {
margin-left: 50;
width: 80vw;
}

#page-container {
position: relative;
min-height: 100vh;
}

#content-wrap {
padding-bottom: 2.5rem;
/* Footer height */
}


#footer {
font-family: "Lucida Console", Courier, monospace;
width: 100%;
position: absolute;
height: 2.5rem;
/* bottom: 0; */
left: 0;
}



.column {
float: left;
width: 50%;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 1350px) {
.column {
width: 100%;
}
}

img {
max-width: 80vw;
max-height: 80vh;
}

0 comments on commit 824a7ae

Please sign in to comment.