-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdropdown_menu.html
More file actions
65 lines (61 loc) · 2.99 KB
/
dropdown_menu.html
File metadata and controls
65 lines (61 loc) · 2.99 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
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="ro">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Automatic House Systems - dropdown menu for easy navigation">
<meta name="keywords" content="Automatic House, Systems, dropdown menu, navigation">
<meta name="author" content="Automatic House Systems">
<meta name="robots" content="index, follow">
<title>Automatic House Systems</title>
<link rel="icon" href="/images/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css" />
</head>
<body>
<ul class="menu">
<li class="dropdown"><a href="index.html" class="dropdown-menu-button">Home</a>
<div class="dropdown-content">
<a href="https://www.automatic-house.ro/sp.html?name=projects" class="dropdown-link">Projects</a>
<a href="https://www.automatic-house.ro/contact.html?name=contact" class="dropdown-link">Contribute</a>
</div>
</li>
<li class="dropdown"><a href="#" class="dropdown-menu-button">Learn</a>
<div class="dropdown-content">
<a href="https://www.coursera.org/" class="dropdown-link">Coursera</a>
<a href="https://scholar.google.com/" class="dropdown-link">scholar.google</a>
<a href="https://www.edx.org/" class="dropdown-link">edX</a>
<a href="https://www.udacity.com/" class="dropdown-link">Udacity</a>
<a href="https://www.udemy.com/" class="dropdown-link">Udemy</a>
<a href="https://www.codecademy.com/" class="dropdown-link">Codecademy</a>
<a href="https://www.khanacademy.org/" class="dropdown-link">Khan Academy</a>
<a href="https://www.freecodecamp.org/" class="dropdown-link">FreeCodeCamp</a>
<a href="https://www.pluralsight.com/" class="dropdown-link">Pluralsight</a>
</div>
</li>
<li class="dropdown">
<a href="#" class="dropdown-menu-button">FAQ</a>
<div id="faq" class="dropdown-content">
<a href="faq.html" class="dropdown-link">FAQ</a>
<a href="questions.html" class="dropdown-link">Questions</a>
</div>
</li>
<li class="dropdown">
<a href="#" class="dropdown-menu-button">User</a>
<div class="dropdown-content">
<a href="login.html" class="dropdown-link">Login</a>
<a href="logout.html" class="dropdown-link">Logout</a>
</div>
</li>
<li class="dropdown">
<button class="dropdown-menu-button userbtn-menu-right fa-solid fa-user" id="loginButton" title="More Info"></button>
<div class="dropdown-content" id="dropdownContent">
<a href="edit_user.html" class="dropdown-link">Edit</a>
<a href="logout.html" class="dropdown-link">Logout</a>
</div>
</li>
</ul>
<script src="javascript/dropdown.js"></script>
</body>
</html>