-
Notifications
You must be signed in to change notification settings - Fork 0
/
resources.html
112 lines (107 loc) · 5.57 KB
/
resources.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Evergreen Valley High School Math Club">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<title>EVHS Math Club</title>
<!-- Page styles -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.indigo-blue.min.css" />
<link rel="stylesheet" href="css/main.css">
<style>
#view-source {
position: fixed;
display: block;
right: 0;
bottom: 0;
margin-right: 40px;
margin-bottom: 40px;
z-index: 900;
}
</style>
</head>
<body>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">EVHS Math Club</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation. We hide it in small screens. -->
<nav class="top-navigation mdl-navigation mdl-layout--large-screen-only">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="about.html">About</a>
<a class="mdl-navigation__link" href="contests.html">Contests</a>
<a class="mdl-navigation__link" href="membersheet.html">Member Sheet</a>
<a class="mdl-navigation__link" href="calendar.html">Event Calendar</a>
<a class="mdl-navigation__link" href="lectures.html">Lectures</a>
<a class="mdl-navigation__link" href="resources.html">Resources</a>
<a class="mdl-navigation__link" href="https://evmt.github.io" target="_blank">EVMT</a>
</nav>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">EVHS Math Club</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="about.html">About</a>
<a class="mdl-navigation__link" href="contests.html">Contests</a>
<a class="mdl-navigation__link" href="membersheet.html">Member Sheet</a>
<a class="mdl-navigation__link" href="calendar.html">Event Calendar</a>
<a class="mdl-navigation__link" href="lectures.html">Lectures</a>
<a class="mdl-navigation__link" href="resources.html">Resources</a>
<a class="mdl-navigation__link" href="https://evmt.github.io" target="_blank">EVMT</a>
</nav>
</div>
<main class="mdl-layout__content">
<h3 style="text-align:center">Resources for Math Competition Preparation</h3>
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--4-col mdl-card mdl-shadow--4dp">
<div class="mdl-card__title resource mdl-card--expand">
<h2 class="mdl-card__title-text">NAT Fall Startup Tests</h2>
</div>
<div class="mdl-card__supporting-text">
Here is a folder with past NAT Fall Startup tests from 2007 to 2015 for practice. Problems, answers, and solutions are included.
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect" href="https://drive.google.com/open?id=0B3EXQodJnxRIa3BOT29OUllobjg" target="_blank">
Link
</a>
</div>
</div>
<div class="mdl-cell mdl-cell--4-col mdl-card mdl-shadow--4dp">
<div class="mdl-card__title resource mdl-card--expand">
<h2 class="mdl-card__title-text">Art of Problem Solving Website</h2>
</div>
<div class="mdl-card__supporting-text">
Art of Problem Solving (AoPS) is an amazing community for math competitors. They have online classes in a variety of math topics, forums for discussing math competitions, and many more resources.
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect" href="https://artofproblemsolving.com/" target="_blank">
Link
</a>
</div>
</div>
<div class="mdl-cell mdl-cell--4-col mdl-card mdl-shadow--4dp">
<div class="mdl-card__title resource mdl-card--expand">
<h2 class="mdl-card__title-text">Art of Problem Solving Books</h2>
</div>
<div class="mdl-card__supporting-text">
Art of Problem Solving (AoPS) publishes many well written books for math competitions. Specifically, the books "Art of Problem Solving: Volume 1" and "Art of Problem Solving: Volume 2" are excellent for preparation for the AMC 10/12, AIME, and other tournaments.
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect" href="https://artofproblemsolving.com/store" target="_blank">
Link
</a>
</div>
</div>
</div>
</main>
</div>
<script src="https://code.getmdl.io/1.3.0/material.min.js"></script>
</body>
</html>