generated from beasmith152/Boilerplate-Web-dev-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (45 loc) · 2.23 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicons -->
<link rel="icon" type="image/png" href="/favicons/favicon-48x48.png" sizes="48x48" />
<link rel="icon" type="image/svg+xml" href="/favicons/favicon.svg" />
<link rel="shortcut icon" href="/favicons/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="Portfolio" />
<link rel="manifest" href="/favicons/site.webmanifest" />
<!-- Stylesheet -->
<link rel="stylesheet" href="style.css">
<!-- Scripts -->
<script src="script.js" defer></script>
<!-- font embed -->
<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=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<title>Bea Smith</title>
</head>
<!-- Content of Page -->
<body>
<!-- menu -->
<div id="Nav">
<a href="https://landing-page-henna-pi.vercel.app/" class="navlink"><img src="https://www.freepnglogos.com/uploads/b-letter-logo-png/b-letter-letter-origami-isotype-transparent-png-svg-vector-17.png" class="logo"/></a>
<button class="hamburger" onclick="toggleMenu()">☰</button>
<div class="navlinks">
<a href="https://bsideportfolio.com/" target="_blank" class="navlink">Design Portfolio</a>
<a href="page2.html" class="navlink"> About Me </a>
<a href="page3.html" class="navlink"> My Work </a>
<a href="https://github.com/beasmith152" target="_blank" class="navlink"> My GitHub </a>
</div>
</div>
<!-- Overlay -->
<div class="backgroundoverlay">
</div>
<h1 class="SiteHero">Welcome to the<p class="siteherobea"> Bea </p>Side </h1>
<h2 class="SiteSubHero">"Striving to Design the Future"</h2>
<h2 class="SiteSubHeroLink"><a href="page3.html">View my Work</a></h2>
</body>
<!-- end of content -->
</html>