-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.html
More file actions
58 lines (56 loc) · 2.79 KB
/
template.html
File metadata and controls
58 lines (56 loc) · 2.79 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Justin Wu's website</title>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<meta name="author" content="Justin Wu">
<meta name="keywords" content="Carnegie Mellon University, Information Systems">
<meta name="description" content="Justin Wu professional website">
<link rel="stylesheet" href="static\templates.css">
<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=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<script src="./static/script.js" defer></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body onload="addYear()">
<div class="container">
<header class="site-header">
<h1 id="webname">Justin Wu</h1>
<nav class="main-nav">
<button id="hamburgerBtn"><i class="fas fa-bars"></i></button>
<a href="index.html">Home</a>
<a href="views\cv.html">CV</a>
<a href="views\contact.html">Contact me</a>
<a href="views\fun.html">For fun</a>
<a href="template.html">Alternate Layout</a>
</nav>
</header>
<main class="primary-content">
<div class="mainimg">
<img src="static\Chrollo_Lucilfer.jpg" alt="Picture of Chrollo Lucilfer">
</div>
<div class="maincontent">
<h2 id="greeting">Hi, my name is Justin Wu</h2>
<div id="shortBio">
<p>Hi! My name is Justin Wu and I am a freshman studying Information Systems at Carnegie Mellon University.</p>
</div>
</div>
<div class="bottomcontent">
<div id="longBio" style="display: none;">
<p>Hi! My name is Justin Wu and I am a freshman studying Information Systems at Carnegie Mellon University.
This is a project for my 67-250 class, and hopefully this website might give you some insight into who I am. In my free
time I like skateboarding, cooking, and watching anime!</p>
</div>
<button id="readmoreb">Read More</button>
</div>
</main>
<footer class="site-footer">
<p>Copyright Justin Wu</p>
<p id="copyYear"></p>
</footer>
</div>
</body>
</html>