diff --git a/writeframebutton1.go b/writeframebutton1.go
new file mode 100644
index 0000000..d68973d
--- /dev/null
+++ b/writeframebutton1.go
@@ -0,0 +1,21 @@
+package frameproto
+
+import (
+ "io"
+)
+
+// WriteFrameButton1 will write the HTML element for the Frame-Protocol's (i.e., Farcaster Frame's) "fc:frame:button:1" name-value pair.
+//
+// For example, this call:
+//
+// var label string = "go forward"
+//
+// frameproto.WriteFrameButton1(writer, label)
+//
+// Would write this HTML element:
+//
+//
+func WriteFrameButton1(writer io.Writer, label string) {
+ const property string = MetaPropertyFrameButton1
+ writeMetaPropertyContent(writer, property, label)
+}
diff --git a/writeframebutton1_test.go b/writeframebutton1_test.go
new file mode 100644
index 0000000..b07eae9
--- /dev/null
+++ b/writeframebutton1_test.go
@@ -0,0 +1,68 @@
+package frameproto
+
+import (
+ "testing"
+
+ "strings"
+)
+
+func TestWriteFrameButton1(t *testing.T) {
+
+ tests := []struct{
+ Label string
+ Expected string
+ }{
+ {
+ Label: "",
+ Expected: ``+"\n",
+ },
+
+
+
+ {
+ Label: "something",
+ Expected: ``+"\n",
+ },
+
+
+
+ {
+ Label: "Hello world! 🙂",
+ Expected: ``+"\n",
+ },
+
+
+
+ {
+ Label: "go forward",
+ Expected: ``+"\n",
+ },
+
+
+
+ {
+ Label: "I like to eat, eat, eat, apples and bananas",
+ Expected: ``+"\n",
+ },
+ }
+
+ for testNumber, test := range tests {
+
+ var buffer strings.Builder
+
+ WriteFrameButton1(&buffer, test.Label)
+
+ expected := test.Expected
+ actual := buffer.String()
+
+ if expected != actual {
+ t.Errorf("For test #%d, the actual written meta-tag is not what was expected." ,testNumber)
+ t.Logf("EXPECTED: %s", expected)
+ t.Logf("ACTUAL: %s", actual)
+ t.Logf("EXPECTED: %q", expected)
+ t.Logf("ACTUAL: %q", actual)
+ t.Logf("LABEL: %q", test.Label)
+ continue
+ }
+ }
+}