-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (68 loc) · 1.76 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
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Jennifer's Dev Potal</title>
<!--<p> CSS </p> -->
<link rel= "stylesheet" href="CSS/main.css">
<!--<p> Media Quiries </p> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Tab icon -->
<link rel="icon" href="img/cjm.png">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed" rel="stylesheet">
</head>
<body>
<header>
<nav class="topNav">
<h1>JENNIFER'S DEV PORTAL</h1>
<ul>
<li><a href="#parallax0"> HOME </a></li>
<li><a href="#projects"> PROJECTS </a></li>
<li><a href="#about"> ABOUT </a></li>
</ul>
</nav>
</header>
<main>
<div class="parallax" id= "parallax0"></div>
<div class="vertical-line" style="height: 300px;"></div>
<div id="projects">
<h2 id="projectTitle" >Projects</h2>
<div id="p1">
<a href="bash-me.html" target="blank">
<img src="img/bashme.jpg" alt="thumbnail">
</a>
<p>About me</p>
</div>
<div id="p2">
<a href="love-letters/index.html" target="blank">
<img src="img/LL.jpg" alt="thumbnail">
</a>
<p>SOP love letters to Git, Bash, and GitHub</p>
</div>
<div id="p3">
<a href="korpse/index.html" target="blank">
<img src="img/EC.jpg" alt="thumbnail">
</a>
<p>Exquisite corpse using Github</p>
</div>
<div id="p4">
<a href="">
<img src="img/CS.jpg" alt="thumbnail">
</a>
<p>Comming soon</p>
</div>
</div>
<div class="vertical-line" style="height: 300px;"></div>
<div id="about">
<h2>About</h2>
<p id="aboutTxt">
Student • Explorer • Designer
</p>
</div>
</main>
<!-- Javascript -->
<script src="js/loading.js">
</script>
</body>
</html>