forked from shannonfarvolden/html-css-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (22 loc) · 754 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- This is the link to the FontAwesome Icons library -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
<!-- Link to Style.CSS -->
<link rel="stylesheet" type="text/css" href="style.css" />
<title>Document</title>
</head>
<body>
<!-- Add your code below-->
<h1>Welcome to the workshop! You're all set up!</h1>
<!-- Add your code above this line -->
</body>
</html>