forked from nrgribeiro/git-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (22 loc) · 669 Bytes
/
Copy pathindex.html
File metadata and controls
28 lines (22 loc) · 669 Bytes
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<title>HTML5 Website</title>
<meta name="description" content="My first HTML5 Website">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="src/scss/styles.scss">
<script type="module" src="src/js/main.js"></script>
</head>
<body>
<div class="container">
<div class="col-12 text-center p-4">
<h1>Hello world!</h1>
<p class="h3">This is Ruix2 first HTML5 Website.</p>
</div>
<div class="col-12 text-center p-4">
<button class="btn btn-primary">click me!</button>
</div>
</div>
</body>
</html>