summaryrefslogtreecommitdiff
path: root/index.php
blob: d9f2943ebb601d80a498c5baef3b2d982af3f131 (plain) (blame)
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>The University Edge</title>
	<style>
		<?php include('index.css'); ?>
	</style>
	<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=Vollkorn&display=swap" rel="stylesheet">
    <link rel="stylesheet" href="/desktop.css" />
    <link rel="stylesheet" href="/widescreen.css" />
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="description" content="++description++" />
    <meta property="og:description" content="++description++" />
    <meta
      property="og:image"
      content="http://theuniversityedge.com/assets/logo.webp"
    />
    <meta
      property="og:image:secure_url"
      content="https://theuniversityedge.com/assets/logo.webp"
    />
    <meta property="og:site_name" content="The University Edge" />
    <meta property="og:title" content="The University Edge" />
    <meta property="og:type" content="website" />
    <meta property="og:url" content="https://theuniversityedge.com" />
  </head>

  <body id="menu">
    <main>
	<nav>
		<a class="closeMenu" href="#">
			<svg style="width: 24px; height: 24px" viewBox="0 0 24 24">
				<path fill="#ffffff"
					d="M21,15.61L19.59,17L14.58,12L19.59,7L21,8.39L17.44,12L21,15.61M3,6H16V8H3V6M3,13V11H13V13H3M3,18V16H16V18H3Z" />
			</svg>
		</a>
      <a href="/#"><img src="/assets/logo-simple.png" /></a>
      <a href="/#contact">Contact Me</a>
      <a href="/#reviews">Reviews</a>
      <a href="/about">About</a>
      <a href="/policies">Policies</a>
      <a href="/#pricing">Pricing</a>
      <a href="/#offerings">Offerings</a>
    </nav>
	<a class="openMenu" href="#menu">
		<svg style="width: 24px; height: 24px" viewBox="0 0 24 24">
			<path fill="#195970" d="M3,6H21V8H3V6M3,11H21V13H3V11M3,16H21V18H3V16Z" />
		</svg>
	</a>
      <section>
        <p>
          Nostrum eum pariatur pariatur qui libero dolores modi incidunt.
          Tempora asperiores nostrum asperiores non nihil. Dolores adipisci quia
          sed aut excepturi. Nobis harum perspiciatis molestiae atque.
        </p>

        <p>
          Reprehenderit quaerat maiores voluptas non reiciendis. Porro dicta
          necessitatibus voluptatibus alias qui at quaerat. Non explicabo neque
          impedit. Non velit amet accusantium aut itaque necessitatibus. Eveniet
          sunt consequatur officia.
        </p>

        <p>
          Fugiat consequatur sunt officia neque magni nihil exercitationem.
          Placeat fuga consequatur ipsa. Quia velit non aut dolor excepturi
          impedit. Voluptates ipsa ut sunt consequatur quisquam. Nisi commodi
          est qui id qui consequuntur.
        </p>

        <p>
          Recusandae deserunt ullam corrupti et. Quam est et voluptatum
          consequatur. Voluptates quia suscipit in voluptates.
        </p>

        <p>
          Quia porro aliquam illum eius possimus reprehenderit hic. Sed
          similique qui et. Eos aut illum veniam. Voluptas dolores minima et
          dolor reiciendis.
        </p>
      </section>
    </main>

    <footer>
      <p>
        &copy;
        <?php echo date('Y'); ?>
        The University Edge. All rights reserved.
      </p>
    </footer>
  </body>
</html>