-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (77 loc) · 2.16 KB
/
Copy pathindex.html
File metadata and controls
80 lines (77 loc) · 2.16 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>John A. Dilworth III.</title>
<style>
body {
background: linear-gradient(
to bottom,
#ff0000,
#ffee00d4
); /* Replace with your desired colors */
height: 100vh;
margin: 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}
.content {
background-color: rgba(
255,
255,
255,
0.89
); /* Replace with your desired color */
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.498);
}
</style>
</head>
<body>
<div class="content">
<h1>Hello, World!</h1>
<p>This is JD in the Tech World of ic stars.</p>
<p>We are UpNextTech13 in Cycle 13.</p>
</div>
<h1>John A Dilworth III.</h1>
<a href="calendar.html">Calendar</a>
<img
src="https://scontent-ord5-2.xx.fbcdn.net/v/t39.30808-6/300391234_121557803964255_7100666524318406215_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=09cbfe&_nc_ohc=KdT_tHPftr0AX-wXFlQ&_nc_ht=scontent-ord5-2.xx&oh=00_AfAbgFsS8L2RgC55hRR7ZSR9TTdFbxUbsHoAj3DFGZnrFg&oe=6492EC72"
alt="This is me on Valentine's day."
width="25%"
/>
<img
src="https://icstars-mke-cycle13.slack.com/files/U05BJBX2J69/F05DCBWBJ5P/20230616_171102.jpg"
alt="Hanging with Melissa."
/>
<p>
Coming into my own in technology. I am a part of an innovative tech team.
</p>
<fieldset>
<legend>Who has the better food, Chicago or Milwaukee?</legend>
<label
><input
id="Chicago"
type="radio"
name="Chicago-Milwaukee"
value="Chicago"
checked
/>Chicago</label
>
<label
><input
id="Milwaukee"
type="radio"
name="Chicago-Milwaukee"
value="Milwaukee"
/>Milwaukee</label
>
</fieldset>
<script src="index3.js"></script>
</body>
</html>