add empty git ignore, add styles and pages for classes
This commit is contained in:
parent
46adf2d77d
commit
a9b9564e55
5 changed files with 187 additions and 0 deletions
0
.gitignore
vendored
Normal file
0
.gitignore
vendored
Normal file
44
public/3d-modeling-analysis/index.html
Normal file
44
public/3d-modeling-analysis/index.html
Normal file
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>3-D Modeling & Analysis</title>
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body {
|
||||
text-align: center;
|
||||
background-color: #222;
|
||||
color: #ddd;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
}
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #e600008c;
|
||||
}
|
||||
a {
|
||||
font-size: 18px;
|
||||
margin: 10px;
|
||||
text-decoration: none;
|
||||
color: #ddd;
|
||||
}
|
||||
a:hover {
|
||||
color: #e60000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>3-D Modeling & Analysis</h1>
|
||||
<div style="display: flex; flex-direction: column">
|
||||
<a href="https://docs.google.com/document/d/1kKbwxCo9_9Cvo9w4RErARzjXhQXCAZ8P/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true" target="_blank"
|
||||
>Syllabus</a
|
||||
>
|
||||
<a href="https://www.gadoe.org/Curriculum-Instruction-and-Assessment/CTAE/Documents/Survey-Engineering-Graphics.pdf" target="_blank"
|
||||
>Standards</a
|
||||
>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
55
public/index.html
Normal file
55
public/index.html
Normal file
|
@ -0,0 +1,55 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Links to Engineering Graphics Resources</title>
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body {
|
||||
text-align: center;
|
||||
background-color: #222;
|
||||
color: #ddd;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
}
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #e600008c;
|
||||
}
|
||||
a {
|
||||
font-size: 18px;
|
||||
margin: 10px;
|
||||
text-decoration: none;
|
||||
color: #ddd;
|
||||
}
|
||||
a:hover {
|
||||
color: #e60000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Hi! This website is under construction</h1>
|
||||
<h2>In the meantime, you can visit these resources:</h2>
|
||||
<div style="display: flex; flex-direction:column;">
|
||||
<a
|
||||
href="/introduction-to-drafting-design"
|
||||
target="_blank"
|
||||
>Introduction to Drafting & Design</a
|
||||
>
|
||||
<a
|
||||
href="/survey-of-engineering-graphics"
|
||||
target="_blank"
|
||||
>Survey of Engineering Graphics</a
|
||||
>
|
||||
<a href="/3d-modeling-analysis" target="_blank"
|
||||
>3-D Modeling & Analysis</a
|
||||
>
|
||||
<a href="/safety-docs" target="_blank"
|
||||
>Safety Docs</a
|
||||
>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
44
public/introduction-to-drafting-design/index.html
Normal file
44
public/introduction-to-drafting-design/index.html
Normal file
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Introduction to Drafting & Design</title>
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body {
|
||||
text-align: center;
|
||||
background-color: #222;
|
||||
color: #ddd;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
}
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #e600008c;
|
||||
}
|
||||
a {
|
||||
font-size: 18px;
|
||||
margin: 10px;
|
||||
text-decoration: none;
|
||||
color: #ddd;
|
||||
}
|
||||
a:hover {
|
||||
color: #e60000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Introduction to Drafting & Design</h1>
|
||||
<div style="display: flex; flex-direction: column">
|
||||
<a href="https://docs.google.com/document/d/1m5dqMdQ1CFUWDsnbSuWmLwgluZdxQ076/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true" target="_blank"
|
||||
>Syllabus</a
|
||||
>
|
||||
<a href="https://www.gadoe.org/Curriculum-Instruction-and-Assessment/CTAE/Documents/Survey-Engineering-Graphics.pdf" target="_blank"
|
||||
>Standards</a
|
||||
>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
44
public/survey-of-engineering-graphics/index.html
Normal file
44
public/survey-of-engineering-graphics/index.html
Normal file
|
@ -0,0 +1,44 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Survey of Engineering Graphics</title>
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css?family=Open+Sans&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<style>
|
||||
body {
|
||||
text-align: center;
|
||||
background-color: #222;
|
||||
color: #ddd;
|
||||
font-family: "Open Sans", sans-serif;
|
||||
}
|
||||
h1 {
|
||||
font-size: 24px;
|
||||
font-weight: bold;
|
||||
color: #e600008c;
|
||||
}
|
||||
a {
|
||||
font-size: 18px;
|
||||
margin: 10px;
|
||||
text-decoration: none;
|
||||
color: #ddd;
|
||||
}
|
||||
a:hover {
|
||||
color: #e60000;
|
||||
text-decoration: underline;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<h1>Survey of Engineering Graphics</h1>
|
||||
<div style="display: flex; flex-direction: column">
|
||||
<a href="https://docs.google.com/document/d/1AO7QDsqlXpwbF9BaIVbBjGFq_nru8RKp/edit?usp=sharing&ouid=112354049457815110133&rtpof=true&sd=true" target="_blank"
|
||||
>Syllabus</a
|
||||
>
|
||||
<a href="https://www.gadoe.org/Curriculum-Instruction-and-Assessment/CTAE/Documents/Survey-Engineering-Graphics.pdf" target="_blank"
|
||||
>Standards</a
|
||||
>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Reference in a new issue