-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.html
94 lines (85 loc) · 3.32 KB
/
search.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
<!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>
<h1 class="heading">Searches for: computer science</h1>
<div class="block block--left">
<div class="emp-content column">
<section class="box-border">
<h3><a href="careerview.html">Computer Science</a></h3>
<h4>career</h4>
Computer science is the study of computation, information, and
automation. Computer science spans theoretical disciplines
(such as algorithms, theory of computation, and information theory) to
applied disciplines (including the design and implementation of
hardware and software). Though more often considered an
academic discipline, computer science is closely related to computer
programming
<hr>
</section>
<section>
<h3><a href="">Programming</a></h3>
<h4>career/hobby</h4>
Computer programming is the process of performing particular
computations (or more generally, accomplishing specific computing
results), usually by designing and building executable computer
programs. Programming involves tasks such as analysis, generating
algorithms, profiling algorithms' accuracy and resource consumption,
and the implementation of algorithms
</section>
<section>
<h3><a href="">Algorithms</a></h3>
<h4>career</h4>
Algorithmics is the systematic study of the design and analysis of
algorithms. It is fundamental and one of the oldest fields of
computer science. It includes algorithm design, the art of building
a procedure which can solve efficiently a specific problem or a
class of problem, algorithmic complexity theory...
</section>
<section>
<h3><a href="">Electrical Engineer</a></h3>
<h4>career</h4>
Electrical engineering is an engineering discipline concerned with
the study, design, and application of equipment, devices, and
systems which use electricity, electronics, and electromagnetism.
</section>
</div>
<div class="emp-content emp-links">
<b>Related</b>
<hr>
<ul class="no-pad column">
<li><a href="">programming</a></li>
<li><a href="">mathmatics</a></li>
<li><a href="">calculus</a></li>
<li><a href="">physics</a></li>
<li><a href="">electrical engineer </a></li>
</ul>
<hr>
</div>
</div>
<footer>
<hr>
©2023 by emPathy<br>
Made for AllStarCode demo day by Zhejie, Pius, and Ivan
</footer>
</main>
<script src="search.js"></script>
</body>
</html>