-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
79 lines (76 loc) · 4.01 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<title>SEB Journey</title>
<link rel="stylesheet" href="everything.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/styles/atom-one-dark.min.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Special+Elite&display=swap"/>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Rubik+Glitch&display=swap"/>
</head>
<body data-barba="wrapper">
<main data-barba="container" data-barba-namespace="home">
<div class="transition"></div>
<div class="home-div">
<nav class="main-nav">
<a href="../index.html">
<div class="logo-main">
<div class="gas co">
<span class="number">27</span>
<h2 class="symbol">Jf</h2>
<p class="name">58.933</p>
</div>
</div>
</a>
<div class="burger-menu">
<div class="burger-line"></div>
<div class="burger-line"></div>
<div class="burger-line"></div>
</div>
<ul class="dropdown">
<li class="dropdown-li" style="background-color: wheat;"><a href="projectOne.html" >Project 1</a></li>
<li class="dropdown-li" style="background-color: gold;"><a href="projectTwo.html">Project 2</a></li>
<li class="dropdown-li" style="background-color: tomato;"><a href="projectThree.html">Project 3</a></li>
<li class="dropdown-li" style="background-color: wheat;"><a href="projectFour.html">Project 4</a></li>
</ul>
</nav>
<h3 class="head-message">
Hi, I'm JF. I just took General Assembly's Software Engineering Bootcamp. Scroll to get a glimpse of what I did...
</h3>
<div class="head-image">
<img class="head-img" src="images/head-edited.svg" alt="" />
</div>
<div class="projects-div">
<a href="projectOne.html" class="project-link">
<img src="images/tictactoe.png" alt="" class="project-image">
</a>
<a href="projectTwo.html" class="project-link">
<img src="images/gameshare.png" alt="" class="project-image">
</a>
<a href="projectThree.html" class="project-link">
<img src="images/petrol_down_under.png" alt="" class="project-image">
</a>
<a href="projectFour.html" class="project-link">
<img src="https://fakeimg.pl/1920x940/0047ab/ffffff?text=Project+4&font=noto" alt="" class="project-image">
</a>
</div>
</div>
<div class="filler"></div>
<div class="trigger"></div>
</main>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@barba/core"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/gsap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/ScrollTrigger.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/animation.gsap.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/plugins/debug.addIndicators.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.9.0/highlight.min.js"></script>
<script src="barba.js"></script>
<script class="main-script" src="everything.js"></script>
</body>
</html>