-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathartwork.html
More file actions
71 lines (53 loc) · 1.9 KB
/
Copy pathartwork.html
File metadata and controls
71 lines (53 loc) · 1.9 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
<!DOCTYPE html>
<html lang = "en" xml:lang="en">
<head>
<title>Araceli Gasca</title>
<link rel="stylesheet" href="styles.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="jquery-3.2.1.min.js"></script>
<meta charset="UTF-8"/>
<meta content='width=device-width, initial-scale=1' name='viewport'/>
<meta name="description" content="Web Profile/project"/>
<meta name="keywords" content="Araceli Gasca, profile, github, artist, computer science, software developer, project"/>
<meta name="author" content="Araceli Gasca"/>
<script src="myScripts.js"></script>
<script type="text/javascript">
$(window).ready(function(){
$("header").header_fix();
$(".content").content_adjust();
});
$(window).resize(function(){
$("header").header_fix();
$(".content").content_adjust();
});
</script>
</head>
<body class="art">
<div class="all-content">
<header>
<div class="header-content">
<h1>ARACELI GASCA</h1>
</div>
</header>
<button class="hamburger">☰</button>
<button class="cross">˟</button>
<nav class = "main-nav">
<ul>
<li><a class="nav-home" href="index.html">About Me</a></li>
<li><a class="nav-proj" href="projects.html">Projects</a></li>
<li><a class="nav-art" href="artwork.html">Artwork</a></li>
<li><a class="nav-con" href="contact.html">Contact Me</a></li>
</ul>
</nav>
<div class = "content">
</div>
<footer>
<p>Contact Me Here</p>
<a class="icon-a" href="contact.html" ><i class="fa fa-envelope"></i></a>
<a class="icon-a" href="https://www.linkedin.com/in/agasca1"><i class="fa fa-linkedin"></i></a>
<a class="icon-a" href="https://github.com/agasca1" ><i class="fa fa-github"></i></a>
<a class="icon-a" href="#" ><i class="fa fa-deviantart"></i></a>
</footer>
</div>
</body>
</html>