-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (66 loc) · 3.75 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
<!DOCTYPE html>
<html class="border border-warning border-5 rounded">
<head>
</header>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Week 7 Day 1 After Class Assignment</title>
<h1 class="text-center">Week 7 Day 1</h1>
<h2 class="text-center fs-1">After-Class Assignment</h2>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<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=Abril+Fatface&family=Creepster&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<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=Permanent+Marker&display=swap" rel="stylesheet">
<body class="bg" style="background-image: url(./jupiter.jpg);"><br><br><br>
<!-- Trigger Buttons HTML -->
<button type="button" class="btn btn-warning text-danger" data-bs-toggle="collapse" data-bs-target="#myCollapse">Introduction</button>
<!-- Collapsible Element HTML -->
<div class="collapse" id="myCollapse">
<div class="card card-body bg-danger text-warning">My name is Alan Cortazzo. This is my week 6 Day 1 extra credit assignment.</div>
</div><br><br><br><br>
<!-- Trigger Buttons HTML -->
<button type="button" class="btn btn-danger text-warning" data-bs-toggle="collapse" data-bs-target="#myCollapse2">Background and Education</button>
<!-- Collapsible Element HTML -->
<div class="collapse" id="myCollapse2">
<div class="card card-body bg-warning text-danger">I'm 47, I live in Florida and I'm attending JTC at Columbia Online. I also have an associates degree in information technology from ITT Tech. <br> I was in my last semister of my bachelors degree in information technology when I was arrested.</div>
</div>
<br><br><br><br>
<div class="dropdown">
<button type="button" class="btn btn-warning text-success dropdown-toggle" data-bs-toggle="dropdown">
Interests and Hobbies
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#"></a>Sports</li>
<li><a class="dropdown-item" href="#"></a>Sci-Fi</li>
</ul>
</div><br><br><br><br>
<div class="dropdown">
<button type="button" class="btn btn-primary text-white dropdown-toggle" data-bs-toggle="dropdown">
Professional Experience (if applicable)
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#"></a>Front Service Clerk</li>
<li><a class="dropdown-item" href="#"></a>Stock Clerk</li>
<li><a class="dropdown-item" href="#"></a>Manufacturing Operator</li>
<li><a class="dropdown-item" href="#"></a>Re-Pack Associate</li>
</ul>
</div><br><br><br><br>
<div class="dropdown">
<button type="button" class="btn btn-success dropdown-toggle" data-bs-toggle="dropdown">
Future Goals
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#"></a>Programming Job</li>
<li><a class="dropdown-item" href="#"></a>Living on my own</li>
<li><a class="dropdown-item" href="#"></a>Get a girlfriend</li>
</ul>
</div>
<script src="script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>