-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcareer.html
104 lines (98 loc) · 3.22 KB
/
career.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
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>emPathy</title>
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav id="navbar">
<a id="logo" href="index.html">emPathy</a>
<a href="about.html">About</a>
<a href="questions.html">Quiz</a>
<form id="searchbox">
<input type="text" id="search-input" aria-label="Search" placeholder="search..."/>
<svg id="search-icon" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
</form>
<a href="login.html">Login</a>
<a href="career.html">Career</a>
</nav>
<main>
<div class="emp-toolbar">
<a class="active" href="career.html">Main</a>
<a href="careerfull.html">Career</a>
<a href="">Account</a>
<a href="">Settings</a>
</div>
<section class="emp-content block box">
<div>
<h1>John Doe</h1>
<h3>Member since 1918</h3>
Computer lover with a flair for singing.
</div>
<img class="emp-pfp" src="assets/logo1.jpg"></img>
</section>
<section class="emp-content">
<h2 class="heading">Jump back in</h2>
<div class="block emp-links">
<div class="box-border">
<h3><a href="">computer science</a></h3>
<ul>
<li>
<a href="https://web.mit.edu/6.001/6.037/sicp.pdf">
Structure and Interpretation of Computer Programs
</a>
</li>
<li><a href="">Compilers</a></li>
<li><a href="">Essence of Computer Programming</a></li>
<li><a href="">Algorithms</a></li>
<li><a href="">How to Make a Good Website</a></li>
</ul>
</div>
<div class="box-border">
<h3><a href="">knitting</a></h3>
<ul>
<li><a href="">A Guide to String</a></li>
<li><a href="">Intricate Patterns of Knitting</a></li>
<li><a href="">Ways to Cloth the Cat</a></li>
</ul>
</div>
<div class="box-border">
<h3><a href="">singing</a></h3>
<ul>
<li><a href="">Beginner's Guide to Pitch</a></li>
<li><a href="">Creating a Falsetto</a></li>
</ul>
</div>
<div class="box-border">
<h3><a href="">dancing</a></h3>
<ul>
<li><a href="">History of Dance</a></li>
<li><a href="">Learn Dance by Party Dancing</a></li>
</ul>
</div>
</div>
</section>
<section class="emp-content">
<h2>Recently Added</h2>
<ul class="alt-table emp-links">
<li class="item"><a href="">drawing</a></li>
<li class="item"><a href="">running</a></li>
<li class="item"><a href="">chemistry</a></li>
<li class="item"><a href="">statistics</a></li>
</ul>
</section>
<div class="emp-content">
<h2>Saved for later</h2>
<ul class="alt-table emp-links">
<li><a href="">Structure and Interpretation of Computer Programs</a></li>
<li><a href="">Running the Run</a></li>
<li><a href="">Compiler</a></li>
<li><a href="">Guide to the String</a></li>
</ul>
</div>
</main>
<script src="search.js"></script>
</body>
</html>