-
Notifications
You must be signed in to change notification settings - Fork 0
/
index6style_guide.html
39 lines (30 loc) · 1.06 KB
/
index6style_guide.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: Style guide</title>
</head>
<body>
<h1>Style guide</h1>
<p>The hottest color to wear right now is:
<span id="trendy-color">?</span>
</p>
<p>This is the trendy way to sign an autograph:
<span id="trendy-handwriting">?</span>
</p>
<p>This is the trendy way to frame photographs:
<br>
<img id="trendy-frame" src="https://www.kasandbox.org/programming-images/avatars/mr-pink.png" alt="Cool avatar">
</p>
<script>
var colorEl = document.getElementById("trendy-color");
colorEl.innerHTML = "Yellow";
colorEl.style.color = "blue";
var handEl = document.getElementById("trendy-handwriting");
handEl.innerHTML = "Ahmad Ahmad Sani";
handEl.style.fontFamily = "cursive";
var frameEl = document.getElementById("trendy-frame");
frameEl.style.border = "5px red";
</script>
</body>
</html>