-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAbout.html
76 lines (54 loc) · 1.82 KB
/
About.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
<!DOCTYPE html>
<html>
<head> <meta charset="utf-8">
<title> Demonte Thomas </title>
<link rel="stylesheet" type="text/css" href="styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/typed.js/2.0.12/typed.min.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<header>
<div class="container">
<div class="logo">
<img src="speaks.jpg" width="100" h alt="" title="">
</div>
<nav class="navbar">
<ul>
<li><a href="main.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="video.html">Videos</a></li>
<li><a href="music.html">Mixtape Gallery</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section class="about">
<div class="abt-main">
<img src="tae.png" width="700" height="">
<div class="abt-text">
<h1> About Me: </h1>
<h5>Artist <span> & SongWriter </span></h5>
<p> Wassup , It's MontéSpeaks , from Marietta , GA .
</p>
<a href="contact.html"><button type="button">Holla at Me</a></button>
</div>
</div>
</section>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js" integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery-validate/1.19.3/jquery.validate.min.js"></script>
<script type="text/javascript" src="_js/script.js"></script>
<script src="jquery-3.6.0.min.js" type="text/javascript"></script>
<script type="text/javascript"></script>
<script>
$(document).ready(function(){
$(".about img").fadeIn(function(){
$(this).animate({
height:'700px',
width:'700px',
});
});
});
</script>
</html>