-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (40 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<!-- Defines page language. Helps with accessibility. -->
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>HTML & CSS Lesson</title>
</head>
<body>
<!-- Inline CSS styling -->
<nav style="background-color: red;">
<ul class="menu">
<li class="menu-options"><a href="#html" class="nav-link">HTML</a></li>
<li class="menu-options"><a href="#css" class="nav-link">CSS</a></li>
<li id="contact" class="menu-options"><a href="#form-container" class="nav-link">Contact</a></li>
</ul>
</nav>
<div style="margin-top: 4em;">
<h3>Git Lesson Notes</h3>
<p>Git is a version control system that allows us to create timelines and snapshots of our codebase at any point in time</p>
</div>
<div id="form-container">
<form action="">
<label class="form-display" for="email">Email</label>
<input id="email-input" class="form-display" type="email" placeholder="Type here"
autocapitalize="off"
autocomplete="off"
autocorrect="off">
<label class="form-display" for="message">Message</label>
<textarea class="form-display" name="message" cols="40" rows="10"></textarea>
<button id="submit" class="submit">Submit</button>
</form>
</div>
<div class="test">
<a style="border: 2px solid blue;" href="">Hello HTML</a>
</div>
</body>
</html>