forked from AlainPicard0x0/jfs-css
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (52 loc) · 1.89 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Website</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body>
<header>
<div class="container">
<h2>Custom Websites</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="index.html">Services</a></li>
<li><a href="index.html">About</a></li>
</ul>
</div>
</header>
<main id="main-section">
<div class="container">
<h1>We Make The Best Websites In Town!</h1>
</div>
</main>
<section id="newsletter-section">
<div class="container">
<h3>Subscribe</h3>
<form>
<input id="email" type="email" placeholder="Enter your Email" required>
<button id="subscribe-btn" type="button">Subscribe</button>
</form>
</div>
</section>
<section id="card-section">
<div class="container">
<div class="card">
<img src="./images/html5.png" width="175px" height="200px">
<h3>HTML5</h3>
</div>
<div class="card">
<img src="./images/CSS3.png" width="175px" height="200px">
<h3>CSS3</h3>
</div>
<div class="card">
<img src="./images/JavaScript.png" width="175px" height="200px">
<h3>JavaScript</h3>
</div>
</div>
</section>
</body>
</html>