-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (90 loc) · 3.17 KB
/
index.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="assets/css/index-style.css">
<title>Mobile First</title>
</head>
<body>
<nav class="site-nav grid-wrapper">
<h1>Cosmo Junkie</h1>
<ul>
<li><a href="#portfolio">Portfolio</a></li>
<li><a href="#skills">Skills</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
<section class="hero-wrapper grid-wrapper">
<div class="hero-text">
<h2>Space Enthusiast <br>& JavaScript Developer</h2>
<p class="leading">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquam animi ea earum eligendi
fuga id ipsam, ipsum itaque maxime neque nesciunt perferendis suscipit veniam vero.</p>
<a href="#portfolio" class="button">View my Work</a>
</div>
<div class="hero-image-wrapper">
<img src="assets/images/banner_image.png" alt="Pic of Planet">
</div>
</section>
<section id="portfolio">
<h3>Some of My Projects</h3>
<div class="projects-wrapper grid-wrapper">
<a href="#">
<img src="assets/images/project_1.png" alt="Space Race Image">
<h4>Space Race Game</h4>
</a>
<a href="#">
<img src="assets/images/project_2.png" alt="Planet Boy Image">
<h4>Planet Boy</h4>
</a>
<a href="#">
<img src="assets/images/project_3.png" alt="Captain Cosmo Blog Image">
<h4>Captain Cosmo Blog</h4>
</a>
</div>
</section>
<section id="skills">
<h3>Skills</h3>
<ul class="grid-wrapper">
<li>
<img src="assets/images/comet_1.svg" alt="Comet">
<h4>Javascript</h4>
</li>
<li>
<img src="assets/images/comet_2.svg" alt="Comet">
<h4>React</h4>
</li>
<li>
<img src="assets/images/comet_3.svg" alt="Comet">
<h4>Firebase</h4>
</li>
<li>
<img src="assets/images/comet_4.svg" alt="Comet">
<h4>Flutter</h4>
</li>
</ul>
</section>
<section id="contact">
<h3>Get in Touch</h3>
<p class="leading">Lorem ipsum dolor sit amet, consectetur.</p>
<form action="">
<label for="name"></label><input type="text" name="name" id="name" placeholder="Name">
<label for="email"></label><input type="email" name="email" id="email" placeholder="Email Address">
<label for="message"></label><textarea name="message" id="message" cols="30" rows="10"
placeholder="Your Message Here"></textarea>
<input type="submit" value="Send Flare" class="button">
</form>
</section>
<footer>
<div class="grid-wrapper">
<p class="copyright">© 2022</p>
<ul class="social">
<li><a href="#"><img src="assets/images/icon_fb.svg" alt=""></a></li>
<li><a href="#"><img src="assets/images/icon_tw.svg" alt=""></a></li>
</ul>
</div>
</footer>
</body>
</html>