-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (69 loc) · 2.98 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
<!DOCTYPE html>
<html lang="en">
<head>
<script>
let startTime = performance.now();
</script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>WAC - Web Accessibility Compliance Tool</title>
<!-- bootstrap cdn for basic css styling -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="icon" type="image/x-icon" href="favicon.svg" />
<link href="style.css" rel="stylesheet" />
</head>
<body>
<nav>
<div class="container">
<ul>
<li>
<a class="navbar-brand" href="index.html">Wact</a>
</li>
<li><a href="#home">Home</a></li>
<li><a href="#news">News</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="#about">About</a></li>
</ul>
</nav>
</div>
<div class="container">
<h1>h1 form element</h1>
<form action="" class="form-horizontal form-group">
<label for="name">First Name</label>
<input type="text" class="form-control" id="fname" placeholder="First Name input">
<label for="name">Last Name</label>
<input type="text" class="form-control" id="lname" placeholder="Last Name input">
<button type="button" class="form-control btn btn-primary btn-block" name="button">Submit</button>
</form>
</div>
<hr>
<div class="container">
<h1>H1 Text container</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ex expedita vero ad quisquam, tempore laboriosam ab, impedit nulla dignissimos odio!
</p>
</div>
<hr>
<div class="container">
<h1>6 splush images, no design with css, all made with js</h1>
<h2>No html markup or css used, just the <code> img src </code> code! </h2>
<h3>javascript style fit container in 100% width</h3>
<img src="img/birthday.jpg">
<img src="img/elvis.jpg">
<img src="img/event.jpg">
<img src="img/foinikes.jpg">
<img src="img/internetcoffee.jpg">
<img src="img/people3.jpg">
</div>
<footer style="padding: 20px 0;background-color: #000000">
<div style="padding-left:5px;color:#fff;">
Copyright Web Accessibility coding
</div>
</footer>
<script src="./wact.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</body>
</html>