You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.4 KiB
63 lines
1.4 KiB
<!doctype html> |
|
<html> |
|
<head> |
|
<meta charset="utf-8"> |
|
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
<title>My Learning Website</title> |
|
<link href="/styles/styles.css" rel="stylesheet" type="text/css"> |
|
<link href="/webdevelopment/styles/styles.css" rel="stylesheet" type="text/css"> |
|
<link href="../styles/samples.css" rel="stylesheet" type="text/css"> |
|
<script type="module" src="/scripts/article.js" defer></script> |
|
<script type="text/javascript" src="/jQuery/jquery-3.6.3.js"></script> |
|
|
|
|
|
<script type="text/javascript"> |
|
$("document").ready(function() { |
|
$("#testDiv").animate({width: 400, height:300}, 200) |
|
}); |
|
|
|
$("#name").text("Philip Osztromok"); |
|
$("#resume").text("RESUME"); |
|
$("#footer").text("Click to continue..........."); |
|
|
|
var newParagraph = $("<p>"); |
|
$("#content").html(newParagraph); |
|
</script> |
|
<style> |
|
#testDiv { |
|
position: absolute; |
|
width: 0px; |
|
height: 0px; |
|
top: 200px; |
|
left: 500px; |
|
margin: 10px; |
|
padding: 20px; |
|
text-align: center; |
|
background: #b3c8d0; |
|
border: 1px solid blue; |
|
font-size: 16pt; |
|
cursor: pointer; |
|
} |
|
h1 { |
|
margin-top: 100px; |
|
color: black; |
|
} |
|
|
|
h3 { |
|
margin-top: 50px; |
|
} |
|
</style> |
|
|
|
</head> |
|
<body> |
|
<h1>My Resume Project</h1> |
|
<div id="testDiv"> |
|
<h1>Philip Osztromok</h1> |
|
<h3>RESUME</h3> |
|
</div> |
|
<div> |
|
<p id="footer"></p> |
|
</div> |
|
</body> |
|
</html> |