-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
74 lines (74 loc) · 2.44 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Hello, world!</title>
</head>
<body>
<div class="app">
<header>
<img id="logo" src="img/logo.jpg" alt="my logo" />
<nav>
<ul class="nav-items">
<li id="home-link-container">
<a href="index.html" class="nav-link">Home</a>
</li>
<li id="about-link-container">
<a href="about.html" class="nav-link">About</a>
</li>
<li id="contact-link-container">
<a href="contact.html" class="nav-link">Contact</a>
</li>
</ul>
</nav>
</header>
<main>
<h1 id="main-heading">Welcome to my website</h1>
<img id="hero" class="hero-image" src="img/mountains.jpg" alt="mountain landscape picture"/>
</main>
<section class="skills">
<div>
<h2 class="technology">HTML<h2>
<img class="skill-icon" src="img/html.png" alt="html logo"/>
</div>
<div>
<h2 class="technology">JS<h2>
<img class="skill-icon" src="img/js.png" alt="js logo"/>
</div>
<div>
<h2 class="technology">React<h2>
<img class="skill-icon" src="img/react.png" alt="react logo"/>
</div>
<div>
<h2 class="technology">Node<h2>
<img class="skill-icon" src="img/node.png" alt="node logo"/>
</div>
</section>
<section class="contact-form">
<h3>Contact me</h3>
<form>
<div class="input-container">
<label for="name">Name</label>
<input class="form-input" type="text" id="name" name="name">
</div>
<div class="input-container">
<label for="email">Email</label>
<input class="form-input" type="text" id="email" name="email">
</div>
<div class="input-container">
<label for="message">Message</label>
<textarea class="form-input" id="message" name="message"></textarea>
</div>
<div class="input-container">
<button type="submit">Send</button>
</div>
</form>
</section>
</div>
<footer>Footer</footer>
<script src="index.js"></script>
</body>
</html>