mirror of
https://github.com/EthanPisani/ethanpisani.com.git
synced 2025-07-02 18:15:18 -04:00
53 lines
1.3 KiB
HTML
53 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Ethan's Site</title>
|
|
<link
|
|
href="https://fonts.googleapis.com/css?family=Roboto&display=swap"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="{{ url_for('static',filename='css/chem12cpt.css') }}"
|
|
/>
|
|
<link
|
|
rel="stylesheet"
|
|
type="text/css"
|
|
href="{{ url_for('static',filename='css/main.css') }}"
|
|
/>
|
|
<meta name="msapplication-TileColor" content="#000000" />
|
|
<meta name="theme-color" content="#000000" />
|
|
<link
|
|
rel="icon"
|
|
href="{{ url_for('static',filename='img/favicon.ico') }}"
|
|
/>
|
|
<meta name="robots" content="index,follow" />
|
|
</head>
|
|
<body style="margin-top: 1vh">
|
|
<div>
|
|
<h1>Chemistry 12 CPT</h1>
|
|
</div>
|
|
<div>
|
|
<p>
|
|
<a href="{{ url_for('static',filename='docs/studyguide.pdf') }}"
|
|
>Study Guide Units 1,2,3,4</a
|
|
>
|
|
</p>
|
|
<p class="links">Creative components:</p>
|
|
<div class="wrapper">
|
|
<div class="first">
|
|
<p><a href="./unit1">Unit 1</a></p>
|
|
|
|
<p><a href="./unit2">Unit 2</a></p>
|
|
</div>
|
|
<div class="second">
|
|
<p><a href="./unit3">Unit 3</a></p>
|
|
|
|
<p><a href="./unit4">Unit 4</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|