-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
executable file
·42 lines (38 loc) · 1.55 KB
/
chat.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javier Betancourt's Portfolio</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<a href="index.html" id="homeButton">Home</a>
</header>
<main>
<section id="about">
<h1>About Me</h1>
<p>My name is Javier Betancourt, a Computer Science student at Texas A&M University, graduating in May 2026.</p>
</section>
<section id="skills">
<h2>Languages I am Familiar With</h2>
<ul>
<li>Python</li>
<li>C++</li>
<li>C</li>
<li>HTML</li>
<li>CSS</li>
</ul>
</section>
<section id="ai-showcase">
<h2>AI Power Showcase</h2>
<div id="animation"></div>
</section>
<section id="prompt">
<h2>Prompt</h2>
<p>Could you make a website using HTML, CSS, that will include the following about me: "My name is Javier Betancourt, a Computer Science student at Texas A&M University, graduating in May 2026"? Add something showcasing AI's power, such as an animation or something like that. Add the languages that I am familiar with in a section too: those are Python, C++, C, HTML, CSS. Could you also have a section as a block showing this prompt? And on the top left, have a home button going back to index.html.</p>
</section>
</main>
</body>
</html>